home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / gnu-c / src / gcc-2.7.0-amiga / cp / decl2.c < prev    next >
C/C++ Source or Header  |  1995-06-15  |  101KB  |  3,467 lines

  1. /* Process declarations and variables for C compiler.
  2.    Copyright (C) 1988, 1992, 1993, 1995 Free Software Foundation, Inc.
  3.    Hacked by Michael Tiemann (tiemann@cygnus.com)
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 59 Temple Place - Suite 330,
  20. Boston, MA 02111-1307, USA.  */
  21.  
  22.  
  23. /* Process declarations and symbol lookup for C front end.
  24.    Also constructs types; the standard scalar types at initialization,
  25.    and structure, union, array and enum types when they are declared.  */
  26.  
  27. /* ??? not all decl nodes are given the most useful possible
  28.    line numbers.  For example, the CONST_DECLs for enum values.  */
  29.  
  30. #include "config.h"
  31. #include <stdio.h>
  32. #include "tree.h"
  33. #include "rtl.h"
  34. #include "flags.h"
  35. #include "cp-tree.h"
  36. #include "decl.h"
  37. #include "lex.h"
  38. #include "output.h"
  39. #include "defaults.h"
  40.  
  41. extern tree grokdeclarator ();
  42. extern tree get_file_function_name ();
  43. extern tree cleanups_this_call;
  44. static void grok_function_init ();
  45.  
  46. /* A list of virtual function tables we must make sure to write out.  */
  47. tree pending_vtables;
  48.  
  49. /* A list of static class variables.  This is needed, because a
  50.    static class variable can be declared inside the class without
  51.    an initializer, and then initialized, staticly, outside the class.  */
  52. tree pending_statics;
  53.  
  54. /* A list of functions which were declared inline, but which we
  55.    may need to emit outline anyway. */
  56. static tree saved_inlines;
  57.  
  58. /* Used to help generate temporary names which are unique within
  59.    a function.  Reset to 0 by start_function.  */
  60.  
  61. int temp_name_counter;
  62.  
  63. /* Same, but not reset.  Local temp variables and global temp variables
  64.    can have the same name.  */
  65. static int global_temp_name_counter;
  66.  
  67. /* Flag used when debugging spew.c */
  68.  
  69. extern int spew_debug;
  70.  
  71. /* Functions called along with real static constructors and destructors.  */
  72.  
  73. tree static_ctors, static_dtors;
  74.  
  75. /* C (and C++) language-specific option variables.  */
  76.  
  77. /* Nonzero means allow type mismatches in conditional expressions;
  78.    just make their values `void'.   */
  79.  
  80. int flag_cond_mismatch;
  81.  
  82. /* Nonzero means give `double' the same size as `float'.  */
  83.  
  84. int flag_short_double;
  85.  
  86. /* Nonzero means don't recognize the keyword `asm'.  */
  87.  
  88. int flag_no_asm;
  89.  
  90. /* Nonzero means don't recognize any extension keywords.  */
  91.  
  92. int flag_no_gnu_keywords;
  93.  
  94. /* Nonzero means don't recognize the non-ANSI builtin functions.  */
  95.  
  96. int flag_no_builtin;
  97.  
  98. /* Nonzero means don't recognize the non-ANSI builtin functions.
  99.    -ansi sets this.  */
  100.  
  101. int flag_no_nonansi_builtin;
  102.  
  103. /* Nonzero means do some things the same way PCC does.  */
  104.  
  105. int flag_traditional;
  106.  
  107. /* Nonzero means to treat bitfields as unsigned unless they say `signed'.  */
  108.  
  109. int flag_signed_bitfields = 1;
  110.  
  111. /* Nonzero means handle `#ident' directives.  0 means ignore them.  */
  112.  
  113. int flag_no_ident;
  114.  
  115. /* Nonzero means enable obscure ANSI features and disable GNU extensions
  116.    that might cause ANSI-compliant code to be miscompiled.  */
  117.  
  118. int flag_ansi;
  119.  
  120. /* Nonzero means do emit exported implementations of functions even if
  121.    they can be inlined.  */
  122.  
  123. int flag_implement_inlines = 1;
  124.  
  125. /* Nonzero means do emit exported implementations of templates, instead of
  126.    multiple static copies in each file that needs a definition. */
  127.  
  128. int flag_external_templates;
  129.  
  130. /* Nonzero means that the decision to emit or not emit the implementation of a
  131.    template depends on where the template is instantiated, rather than where
  132.    it is defined.  */
  133.  
  134. int flag_alt_external_templates;
  135.  
  136. /* Nonzero means that implicit instantiations will be emitted if needed.  */
  137.  
  138. int flag_implicit_templates = 1;
  139.  
  140. /* Nonzero means warn about implicit declarations.  */
  141.  
  142. int warn_implicit = 1;
  143.  
  144. /* Nonzero means warn when all ctors or dtors are private, and the class
  145.    has no friends.  */
  146.  
  147. int warn_ctor_dtor_privacy = 1;
  148.  
  149. /* True if we want to implement vtbvales using "thunks".
  150.    The default is off now, but will be on later. */
  151.  
  152. int flag_vtable_thunks;
  153.  
  154. /* True if we want to deal with repository information.  */
  155.  
  156. int flag_use_repository;
  157.  
  158. /* Nonzero means give string constants the type `const char *'
  159.    to get extra warnings from them.  These warnings will be too numerous
  160.    to be useful, except in thoroughly ANSIfied programs.  */
  161.  
  162. int warn_write_strings;
  163.  
  164. /* Nonzero means warn about pointer casts that can drop a type qualifier
  165.    from the pointer target type.  */
  166.  
  167. int warn_cast_qual;
  168.  
  169. /* Nonzero means warn that dbx info for template class methods isn't fully
  170.    supported yet.  */
  171.  
  172. int warn_template_debugging;
  173.  
  174. /* Warn about traditional constructs whose meanings changed in ANSI C.  */
  175.  
  176. int warn_traditional;
  177.  
  178. /* Nonzero means warn about sizeof(function) or addition/subtraction
  179.    of function pointers.  */
  180.  
  181. int warn_pointer_arith;
  182.  
  183. /* Nonzero means warn for non-prototype function decls
  184.    or non-prototyped defs without previous prototype.  */
  185.  
  186. int warn_strict_prototypes;
  187.  
  188. /* Nonzero means warn for any function def without prototype decl.  */
  189.  
  190. int warn_missing_prototypes;
  191.  
  192. /* Nonzero means warn about multiple (redundant) decls for the same single
  193.    variable or function.  */
  194.  
  195. int warn_redundant_decls;
  196.  
  197. /* Warn if initializer is not completely bracketed.  */
  198.  
  199. int warn_missing_braces;
  200.  
  201. /* Warn about *printf or *scanf format/argument anomalies. */
  202.  
  203. int warn_format;
  204.  
  205. /* Warn about a subscript that has type char.  */
  206.  
  207. int warn_char_subscripts;
  208.  
  209. /* Warn if a type conversion is done that might have confusing results.  */
  210.  
  211. int warn_conversion;
  212.  
  213. /* Warn if adding () is suggested.  */
  214.  
  215. int warn_parentheses;
  216.  
  217. /* Non-zero means warn in function declared in derived class has the
  218.    same name as a virtual in the base class, but fails to match the
  219.    type signature of any virtual function in the base class.  */
  220. int warn_overloaded_virtual;
  221.  
  222. /* Non-zero means warn when declaring a class that has a non virtual
  223.    destructor, when it really ought to have a virtual one. */
  224. int warn_nonvdtor;
  225.  
  226. /* Non-zero means warn when a function is declared extern and later inline.  */
  227. int warn_extern_inline;
  228.  
  229. /* Non-zero means warn when the compiler will reorder code.  */
  230. int warn_reorder;
  231.  
  232. /* Non-zero means warn when synthesis behavior differs from Cfront's.  */
  233. int warn_synth;
  234.  
  235. /* Nonzero means `$' can be in an identifier.
  236.    See cccp.c for reasons why this breaks some obscure ANSI C programs.  */
  237.  
  238. #ifndef DOLLARS_IN_IDENTIFIERS
  239. #define DOLLARS_IN_IDENTIFIERS 1
  240. #endif
  241. int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
  242.  
  243. /* Nonzero for -fno-strict-prototype switch: do not consider empty
  244.    argument prototype to mean function takes no arguments.  */
  245.  
  246. int flag_strict_prototype = 2;
  247. int strict_prototype = 1;
  248. int strict_prototypes_lang_c, strict_prototypes_lang_cplusplus = 1;
  249.  
  250. /* Nonzero means that labels can be used as first-class objects */
  251.  
  252. int flag_labels_ok;
  253.  
  254. /* Non-zero means to collect statistics which might be expensive
  255.    and to print them when we are done.  */
  256. int flag_detailed_statistics;
  257.  
  258. /* C++ specific flags.  */   
  259. /* Nonzero for -fall-virtual: make every member function (except
  260.    constructors) lay down in the virtual function table.  Calls
  261.    can then either go through the virtual function table or not,
  262.    depending.  */
  263.  
  264. int flag_all_virtual;
  265.  
  266. /* Zero means that `this' is a *const.  This gives nice behavior in the
  267.    2.0 world.  1 gives 1.2-compatible behavior.  2 gives Spring behavior.
  268.    -2 means we're constructing an object and it has fixed type.  */
  269.  
  270. int flag_this_is_variable;
  271.  
  272. /* Nonzero means memoize our member lookups.  */
  273.  
  274. int flag_memoize_lookups; int flag_save_memoized_contexts;
  275.  
  276. /* 3 means write out only virtuals function tables `defined'
  277.    in this implementation file.
  278.    2 means write out only specific virtual function tables
  279.    and give them (C) public access.
  280.    1 means write out virtual function tables and give them
  281.    (C) public access.
  282.    0 means write out virtual function tables and give them
  283.    (C) static access (default).
  284.    -1 means declare virtual function tables extern.  */
  285.  
  286. int write_virtuals;
  287.  
  288. /* Nonzero means we should attempt to elide constructors when possible.  */
  289.  
  290. int flag_elide_constructors;
  291.  
  292. /* Nonzero means recognize and handle exception handling constructs.
  293.    Use ansi syntax and semantics.  WORK IN PROGRESS!  */
  294.  
  295. int flag_handle_exceptions;
  296.  
  297. /* Nonzero means recognize and handle signature language constructs.  */
  298.  
  299. int flag_handle_signatures;
  300.  
  301. /* Nonzero means that member functions defined in class scope are
  302.    inline by default.  */
  303.  
  304. int flag_default_inline = 1;
  305.  
  306. /* Controls whether enums and ints freely convert.
  307.    1 means with complete freedom.
  308.    0 means enums can convert to ints, but not vice-versa.  */
  309. int flag_int_enum_equivalence;
  310.  
  311. /* Controls whether compiler is operating under LUCID's Cadillac
  312.    system.  1 means yes, 0 means no.  */
  313. int flag_cadillac;
  314.  
  315. /* Controls whether compiler generates code to build objects
  316.    that can be collected when they become garbage.  */
  317. int flag_gc;
  318.  
  319. /* Controls whether compiler generates 'type descriptor' that give
  320.    run-time type information.  */
  321. int flag_rtti;
  322.  
  323. /* Nonzero if we wish to output cross-referencing information
  324.    for the GNU class browser.  */
  325. extern int flag_gnu_xref;
  326.  
  327. /* Nonzero if compiler can make `reasonable' assumptions about
  328.    references and objects.  For example, the compiler must be
  329.    conservative about the following and not assume that `a' is nonnull:
  330.  
  331.    obj &a = g ();
  332.    a.f (2);
  333.  
  334.    In general, it is `reasonable' to assume that for many programs,
  335.    and better code can be generated in that case.  */
  336.  
  337. int flag_assume_nonnull_objects = 1;
  338.  
  339. /* Nonzero if we want to support huge (> 2^(sizeof(short)*8-1) bytes)
  340.    objects. */
  341.  
  342. int flag_huge_objects;
  343.  
  344. /* Nonzero if we want to conserve space in the .o files.  We do this
  345.    by putting uninitialized data and runtime initialized data into
  346.    .common instead of .data at the expense of not flagging multiple
  347.    definitions.  */
  348.  
  349. int flag_conserve_space;
  350.  
  351. /* Nonzero if we want to obey access control semantics.  */
  352.  
  353. int flag_access_control = 1;
  354.  
  355. /* Nonzero if we want to understand the operator names, i.e. 'bitand'.  */
  356.  
  357. int flag_operator_names;
  358.  
  359. /* Nonzero if we want to check the return value of new and avoid calling
  360.    constructors if it is a null pointer.  */
  361.  
  362. int flag_check_new;
  363.  
  364. /* Nonzero if we want the new ANSI rules for pushing a new scope for `for'
  365.    initialization variables.  Default to on.  */
  366.  
  367. int flag_new_for_scope = 1;
  368.  
  369. /* Table of language-dependent -f options.
  370.    STRING is the option name.  VARIABLE is the address of the variable.
  371.    ON_VALUE is the value to store in VARIABLE
  372.     if `-fSTRING' is seen as an option.
  373.    (If `-fno-STRING' is seen as an option, the opposite value is stored.)  */
  374.  
  375. static struct { char *string; int *variable; int on_value;} lang_f_options[] =
  376. {
  377.   {"signed-char", &flag_signed_char, 1},
  378.   {"unsigned-char", &flag_signed_char, 0},
  379.   {"signed-bitfields", &flag_signed_bitfields, 1},
  380.   {"unsigned-bitfields", &flag_signed_bitfields, 0},
  381.   {"short-enums", &flag_short_enums, 1},
  382.   {"short-double", &flag_short_double, 1},
  383.   {"cond-mismatch", &flag_cond_mismatch, 1},
  384.   {"asm", &flag_no_asm, 0},
  385.   {"builtin", &flag_no_builtin, 0},
  386.   {"ident", &flag_no_ident, 0},
  387.   {"labels-ok", &flag_labels_ok, 1},
  388.   {"stats", &flag_detailed_statistics, 1},
  389.   {"this-is-variable", &flag_this_is_variable, 1},
  390.   {"strict-prototype", &flag_strict_prototype, 1},
  391.   {"all-virtual", &flag_all_virtual, 1},
  392.   {"memoize-lookups", &flag_memoize_lookups, 1},
  393.   {"elide-constructors", &flag_elide_constructors, 1},
  394.   {"handle-exceptions", &flag_handle_exceptions, 1},
  395.   {"handle-signatures", &flag_handle_signatures, 1},
  396.   {"default-inline", &flag_default_inline, 1},
  397.   {"dollars-in-identifiers", &dollars_in_ident, 1},
  398.   {"enum-int-equiv", &flag_int_enum_equivalence, 1},
  399.   {"gc", &flag_gc, 1},
  400.   {"rtti", &flag_rtti, 1},
  401.   {"xref", &flag_gnu_xref, 1},
  402.   {"nonnull-objects", &flag_assume_nonnull_objects, 1},
  403.   {"implement-inlines", &flag_implement_inlines, 1},
  404.   {"external-templates", &flag_external_templates, 1},
  405.   {"implicit-templates", &flag_implicit_templates, 1},
  406.   {"huge-objects", &flag_huge_objects, 1},
  407.   {"conserve-space", &flag_conserve_space, 1},
  408.   {"vtable-thunks", &flag_vtable_thunks, 1},
  409.   {"short-temps", &flag_short_temps, 1},
  410.   {"access-control", &flag_access_control, 1},
  411.   {"nonansi-builtins", &flag_no_nonansi_builtin, 0},
  412.   {"gnu-keywords", &flag_no_gnu_keywords, 0},
  413.   {"operator-names", &flag_operator_names, 1},
  414.   {"check-new", &flag_check_new, 1},
  415.   {"repo", &flag_use_repository, 1},
  416.   {"for-scope", &flag_new_for_scope, 1}
  417. };
  418.  
  419. /* Decode the string P as a language-specific option.
  420.    Return 1 if it is recognized (and handle it);
  421.    return 0 if not recognized.  */
  422.  
  423. int   
  424. lang_decode_option (p)
  425.      char *p;
  426. {
  427.   if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
  428.     flag_traditional = 1, dollars_in_ident = 1, flag_writable_strings = 1,
  429.     flag_this_is_variable = 1, flag_new_for_scope = 0;
  430.   /* The +e options are for cfront compatibility.  They come in as
  431.      `-+eN', to kludge around gcc.c's argument handling.  */
  432.   else if (p[0] == '-' && p[1] == '+' && p[2] == 'e')
  433.     {
  434.       int old_write_virtuals = write_virtuals;
  435.       if (p[3] == '1')
  436.     write_virtuals = 1;
  437.       else if (p[3] == '0')
  438.     write_virtuals = -1;
  439.       else if (p[3] == '2')
  440.     write_virtuals = 2;
  441.       else error ("invalid +e option");
  442.       if (old_write_virtuals != 0
  443.       && write_virtuals != old_write_virtuals)
  444.     error ("conflicting +e options given");
  445.     }
  446.   else if (p[0] == '-' && p[1] == 'f')
  447.     {
  448.       /* Some kind of -f option.
  449.      P's value is the option sans `-f'.
  450.      Search for it in the table of options.  */
  451.       int found = 0, j;
  452.  
  453.       p += 2;
  454.       /* Try special -f options.  */
  455.  
  456.       if (!strcmp (p, "save-memoized"))
  457.     {
  458.       flag_memoize_lookups = 1;
  459.       flag_save_memoized_contexts = 1;
  460.       found = 1;
  461.     }
  462.       if (!strcmp (p, "no-save-memoized"))
  463.     {
  464.       flag_memoize_lookups = 0;
  465.       flag_save_memoized_contexts = 0;
  466.       found = 1;
  467.     }
  468.       else if (! strncmp (p, "cadillac", 8))
  469.     {
  470.       flag_cadillac = atoi (p+9);
  471.       found = 1;
  472.     }
  473.       else if (! strncmp (p, "no-cadillac", 11))
  474.     {
  475.       flag_cadillac = 0;
  476.       found = 1;
  477.     }
  478.       else if (! strcmp (p, "gc"))
  479.     {
  480.       flag_gc = 1;
  481.       /* This must come along for the ride.  */
  482.       flag_rtti = 1;
  483.       found = 1;
  484.     }
  485.       else if (! strcmp (p, "no-gc"))
  486.     {
  487.       flag_gc = 0;
  488.       /* This must come along for the ride.  */
  489.       flag_rtti = 0;
  490.       found = 1;
  491.     }
  492.       else if (! strcmp (p, "alt-external-templates"))
  493.     {
  494.       flag_external_templates = 1;
  495.       flag_alt_external_templates = 1;
  496.       found = 1;
  497.     }
  498.       else if (! strcmp (p, "no-alt-external-templates"))
  499.     {
  500.       flag_alt_external_templates = 0;
  501.       found = 1;
  502.     }
  503.       else if (!strcmp (p, "ansi-overloading"))
  504.     {
  505.       warning ("-fansi-overloading is no longer meaningful");
  506.       found = 1;
  507.     }
  508.       else if (!strcmp (p, "repo"))
  509.     {
  510.       flag_use_repository = 1;
  511.       flag_implicit_templates = 0;
  512.       found = 1;
  513.     }
  514.       else for (j = 0;
  515.         !found && j < sizeof (lang_f_options) / sizeof (lang_f_options[0]);
  516.         j++)
  517.     {
  518.       if (!strcmp (p, lang_f_options[j].string))
  519.         {
  520.           *lang_f_options[j].variable = lang_f_options[j].on_value;
  521.           /* A goto here would be cleaner,
  522.          but breaks the vax pcc.  */
  523.           found = 1;
  524.         }
  525.       if (p[0] == 'n' && p[1] == 'o' && p[2] == '-'
  526.           && ! strcmp (p+3, lang_f_options[j].string))
  527.         {
  528.           *lang_f_options[j].variable = ! lang_f_options[j].on_value;
  529.           found = 1;
  530.         }
  531.     }
  532.       return found;
  533.     }
  534.   else if (p[0] == '-' && p[1] == 'W')
  535.     {
  536.       int setting = 1;
  537.  
  538.       /* The -W options control the warning behavior of the compiler.  */
  539.       p += 2;
  540.  
  541.       if (p[0] == 'n' && p[1] == 'o' && p[2] == '-')
  542.     setting = 0, p += 3;
  543.  
  544.       if (!strcmp (p, "implicit"))
  545.     warn_implicit = setting;
  546.       else if (!strcmp (p, "return-type"))
  547.     warn_return_type = setting;
  548.       else if (!strcmp (p, "ctor-dtor-privacy"))
  549.     warn_ctor_dtor_privacy = setting;
  550.       else if (!strcmp (p, "write-strings"))
  551.     warn_write_strings = setting;
  552.       else if (!strcmp (p, "cast-qual"))
  553.     warn_cast_qual = setting;
  554.       else if (!strcmp (p, "traditional"))
  555.     warn_traditional = setting;
  556.       else if (!strcmp (p, "char-subscripts"))
  557.     warn_char_subscripts = setting;
  558.       else if (!strcmp (p, "pointer-arith"))
  559.     warn_pointer_arith = setting;
  560.       else if (!strcmp (p, "strict-prototypes"))
  561.     warn_strict_prototypes = setting;
  562.       else if (!strcmp (p, "missing-prototypes"))
  563.     warn_missing_prototypes = setting;
  564.       else if (!strcmp (p, "redundant-decls"))
  565.     warn_redundant_decls = setting;
  566.       else if (!strcmp (p, "missing-braces"))
  567.     warn_missing_braces = setting;
  568.       else if (!strcmp (p, "format"))
  569.     warn_format = setting;
  570.       else if (!strcmp (p, "conversion"))
  571.     warn_conversion = setting;
  572.       else if (!strcmp (p, "parentheses"))
  573.     warn_parentheses = setting;
  574.       else if (!strcmp (p, "non-virtual-dtor"))
  575.     warn_nonvdtor = setting;
  576.       else if (!strcmp (p, "extern-inline"))
  577.     warn_extern_inline = setting;
  578.       else if (!strcmp (p, "reorder"))
  579.     warn_reorder = setting;
  580.       else if (!strcmp (p, "synth"))
  581.     warn_synth = setting;
  582.       else if (!strcmp (p, "comment"))
  583.     ;            /* cpp handles this one.  */
  584.       else if (!strcmp (p, "comments"))
  585.     ;            /* cpp handles this one.  */
  586.       else if (!strcmp (p, "trigraphs"))
  587.     ;            /* cpp handles this one.  */
  588.       else if (!strcmp (p, "import"))
  589.     ;            /* cpp handles this one.  */
  590.       else if (!strcmp (p, "all"))
  591.     {
  592.       extra_warnings = setting;
  593.       warn_return_type = setting;
  594.       warn_unused = setting;
  595.       warn_implicit = setting;
  596.       warn_ctor_dtor_privacy = setting;
  597.       warn_switch = setting;
  598.       warn_format = setting;
  599.       warn_parentheses = setting;
  600.       warn_missing_braces = setting;
  601.       warn_extern_inline = setting;
  602.       warn_nonvdtor = setting;
  603.       /* We save the value of warn_uninitialized, since if they put
  604.          -Wuninitialized on the command line, we need to generate a
  605.          warning about not using it without also specifying -O.  */
  606.       if (warn_uninitialized != 1)
  607.         warn_uninitialized = (setting ? 2 : 0);
  608.       warn_template_debugging = setting;
  609.       warn_reorder = setting;
  610.     }
  611.  
  612.       else if (!strcmp (p, "overloaded-virtual"))
  613.     warn_overloaded_virtual = setting;
  614.       else return 0;
  615.     }
  616.   else if (!strcmp (p, "-ansi"))
  617.     dollars_in_ident = 0, flag_no_nonansi_builtin = 1, flag_ansi = 1,
  618.     flag_no_gnu_keywords = 1, flag_operator_names = 1;
  619. #ifdef SPEW_DEBUG
  620.   /* Undocumented, only ever used when you're invoking cc1plus by hand, since
  621.      it's probably safe to assume no sane person would ever want to use this
  622.      under normal circumstances.  */
  623.   else if (!strcmp (p, "-spew-debug"))
  624.     spew_debug = 1;
  625. #endif
  626.   else
  627.     return 0;
  628.  
  629.   return 1;
  630. }
  631.  
  632. /* Incorporate `const' and `volatile' qualifiers for member functions.
  633.    FUNCTION is a TYPE_DECL or a FUNCTION_DECL.
  634.    QUALS is a list of qualifiers.  */
  635. tree
  636. grok_method_quals (ctype, function, quals)
  637.      tree ctype, function, quals;
  638. {
  639.   tree fntype = TREE_TYPE (function);
  640.   tree raises = TYPE_RAISES_EXCEPTIONS (fntype);
  641.  
  642.   do
  643.     {
  644.       extern tree ridpointers[];
  645.  
  646.       if (TREE_VALUE (quals) == ridpointers[(int)RID_CONST])
  647.     {
  648.       if (TYPE_READONLY (ctype))
  649.         error ("duplicate `%s' %s",
  650.            IDENTIFIER_POINTER (TREE_VALUE (quals)),
  651.            (TREE_CODE (function) == FUNCTION_DECL
  652.             ? "for member function" : "in type declaration"));
  653.       ctype = build_type_variant (ctype, 1, TYPE_VOLATILE (ctype));
  654.       build_pointer_type (ctype);
  655.     }
  656.       else if (TREE_VALUE (quals) == ridpointers[(int)RID_VOLATILE])
  657.     {
  658.       if (TYPE_VOLATILE (ctype))
  659.         error ("duplicate `%s' %s",
  660.            IDENTIFIER_POINTER (TREE_VALUE (quals)),
  661.            (TREE_CODE (function) == FUNCTION_DECL
  662.             ? "for member function" : "in type declaration"));
  663.       ctype = build_type_variant (ctype, TYPE_READONLY (ctype), 1);
  664.       build_pointer_type (ctype);
  665.     }
  666.       else
  667.     my_friendly_abort (20);
  668.       quals = TREE_CHAIN (quals);
  669.     }
  670.   while (quals);
  671.   fntype = build_cplus_method_type (ctype, TREE_TYPE (fntype),
  672.                     (TREE_CODE (fntype) == METHOD_TYPE
  673.                      ? TREE_CHAIN (TYPE_ARG_TYPES (fntype))
  674.                      : TYPE_ARG_TYPES (fntype)));
  675.   if (raises)
  676.     fntype = build_exception_variant (ctype, fntype, raises);
  677.  
  678.   TREE_TYPE (function) = fntype;
  679.   return ctype;
  680. }
  681.  
  682. #if 0                /* Not used. */
  683. /* This routine replaces cryptic DECL_NAMEs with readable DECL_NAMEs.
  684.    It leaves DECL_ASSEMBLER_NAMEs with the correct value.  */
  685. /* This does not yet work with user defined conversion operators
  686.    It should.  */
  687. static void
  688. substitute_nice_name (decl)
  689.      tree decl;
  690. {
  691.   if (DECL_NAME (decl) && TREE_CODE (DECL_NAME (decl)) == IDENTIFIER_NODE)
  692.     {
  693.       char *n = decl_as_string (DECL_NAME (decl), 1);
  694.       if (n[strlen (n) - 1] == ' ')
  695.     n[strlen (n) - 1] = 0;
  696.       DECL_NAME (decl) = get_identifier (n);
  697.     }
  698. }
  699. #endif
  700.  
  701. /* Warn when -fexternal-templates is used and #pragma
  702.    interface/implementation is not used all the times it should be,
  703.    inform the user.  */
  704. void
  705. warn_if_unknown_interface (decl)
  706.      tree decl;
  707. {
  708.   static int already_warned = 0;
  709.   if (already_warned++)
  710.     return;
  711.  
  712.   if (flag_alt_external_templates)
  713.     {
  714.       struct tinst_level *til = tinst_for_decl ();
  715.       int sl = lineno;
  716.       char *sf = input_filename;
  717.  
  718.       lineno = til->line;
  719.       input_filename = til->file;
  720.       cp_warning ("template `%#D' instantiated in file without #pragma interface",
  721.           decl);
  722.       lineno = sl;
  723.       input_filename = sf;
  724.     }
  725.   else
  726.     cp_warning_at ("template `%#D' defined in file without #pragma interface",
  727.            decl);
  728. }
  729.  
  730. /* A subroutine of the parser, to handle a component list.  */
  731. tree
  732. grok_x_components (specs, components)
  733.      tree specs, components;
  734. {
  735.   register tree t, x, tcode;
  736.  
  737.   /* We just got some friends.  They have been recorded elsewhere.  */
  738.   if (components == void_type_node)
  739.     return NULL_TREE;
  740.  
  741.   if (components == NULL_TREE)
  742.     {
  743.       t = groktypename (build_decl_list (specs, NULL_TREE));
  744.  
  745.       if (t == NULL_TREE)
  746.     {
  747.       error ("error in component specification");
  748.       return NULL_TREE;
  749.     }
  750.  
  751.       switch (TREE_CODE (t))
  752.     {
  753.     case VAR_DECL:
  754.       /* Static anonymous unions come out as VAR_DECLs.  */
  755.       if (TREE_CODE (TREE_TYPE (t)) == UNION_TYPE
  756.           && ANON_AGGRNAME_P (TYPE_IDENTIFIER (TREE_TYPE (t))))
  757.         return t;
  758.  
  759.       /* We return SPECS here, because in the parser it was ending
  760.          up with not doing anything to $$, which is what SPECS
  761.          represents.  */
  762.       return specs;
  763.       break;
  764.  
  765.     case RECORD_TYPE:
  766.       /* This code may be needed for UNION_TYPEs as
  767.          well.  */
  768.       tcode = record_type_node;
  769.       if (CLASSTYPE_DECLARED_CLASS(t))
  770.         tcode = class_type_node;
  771.       else if (IS_SIGNATURE(t))
  772.         tcode = signature_type_node;
  773.       
  774.       t = xref_tag (tcode, TYPE_IDENTIFIER (t), NULL_TREE, 0);
  775.       if (TYPE_CONTEXT(t))
  776.         CLASSTYPE_NO_GLOBALIZE(t) = 1;
  777.       return NULL_TREE;
  778.       break;
  779.  
  780.     case UNION_TYPE:
  781.     case ENUMERAL_TYPE:
  782.       if (TREE_CODE(t) == UNION_TYPE)
  783.         tcode = union_type_node;
  784.       else
  785.         tcode = enum_type_node;
  786.  
  787.       t = xref_tag (tcode, TYPE_IDENTIFIER (t), NULL_TREE, 0);
  788.       if (TREE_CODE(t) == UNION_TYPE && TYPE_CONTEXT(t))
  789.         CLASSTYPE_NO_GLOBALIZE(t) = 1;
  790.       if (TREE_CODE (t) == UNION_TYPE
  791.           && ANON_AGGRNAME_P (TYPE_IDENTIFIER (t)))
  792.         {
  793.           struct pending_inline **p;
  794.           x = build_lang_field_decl (FIELD_DECL, NULL_TREE, t);
  795.  
  796.           /* Wipe out memory of synthesized methods */
  797.           TYPE_HAS_CONSTRUCTOR (t) = 0;
  798.           TYPE_HAS_DEFAULT_CONSTRUCTOR (t) = 0;
  799.           TYPE_HAS_INIT_REF (t) = 0;
  800.           TYPE_HAS_CONST_INIT_REF (t) = 0;
  801.           TYPE_HAS_ASSIGN_REF (t) = 0;
  802.           TYPE_HAS_ASSIGNMENT (t) = 0;
  803.           TYPE_HAS_CONST_ASSIGN_REF (t) = 0;
  804.  
  805.           p = &pending_inlines;
  806.           for (; *p; *p = (*p)->next)
  807.         if (DECL_CONTEXT ((*p)->fndecl) != t)
  808.           break;
  809.         }
  810.       else if (TREE_CODE (t) == ENUMERAL_TYPE)
  811.         x = grok_enum_decls (t, NULL_TREE);
  812.       else
  813.         x = NULL_TREE;
  814.       return x;
  815.       break;
  816.  
  817.     default:
  818.       if (t != void_type_node)
  819.         error ("empty component declaration");
  820.       return NULL_TREE;
  821.     }
  822.     }
  823.   else
  824.     {
  825.       t = TREE_TYPE (components);
  826.       if (TREE_CODE (t) == ENUMERAL_TYPE && TREE_NONLOCAL_FLAG (t))
  827.     return grok_enum_decls (t, components);
  828.       else
  829.     return components;
  830.     }
  831. }
  832.  
  833. /* Classes overload their constituent function names automatically.
  834.    When a function name is declared in a record structure,
  835.    its name is changed to it overloaded name.  Since names for
  836.    constructors and destructors can conflict, we place a leading
  837.    '$' for destructors.
  838.  
  839.    CNAME is the name of the class we are grokking for.
  840.  
  841.    FUNCTION is a FUNCTION_DECL.  It was created by `grokdeclarator'.
  842.  
  843.    FLAGS contains bits saying what's special about today's
  844.    arguments.  1 == DESTRUCTOR.  2 == OPERATOR.
  845.  
  846.    If FUNCTION is a destructor, then we must add the `auto-delete' field
  847.    as a second parameter.  There is some hair associated with the fact
  848.    that we must "declare" this variable in the manner consistent with the
  849.    way the rest of the arguments were declared.
  850.  
  851.    QUALS are the qualifiers for the this pointer.  */
  852.  
  853. void
  854. grokclassfn (ctype, cname, function, flags, quals)
  855.      tree ctype, cname, function;
  856.      enum overload_flags flags;
  857.      tree quals;
  858. {
  859.   tree fn_name = DECL_NAME (function);
  860.   tree arg_types;
  861.   tree parm;
  862.   tree qualtype;
  863.  
  864.   if (fn_name == NULL_TREE)
  865.     {
  866.       error ("name missing for member function");
  867.       fn_name = get_identifier ("<anonymous>");
  868.       DECL_NAME (function) = fn_name;
  869.     }
  870.  
  871.   if (quals)
  872.     qualtype = grok_method_quals (ctype, function, quals);
  873.   else
  874.     qualtype = ctype;
  875.  
  876.   arg_types = TYPE_ARG_TYPES (TREE_TYPE (function));
  877.   if (TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
  878.     {
  879.       /* Must add the class instance variable up front.  */
  880.       /* Right now we just make this a pointer.  But later
  881.      we may wish to make it special.  */
  882.       tree type = TREE_VALUE (arg_types);
  883.       int constp = 1;
  884.  
  885.       if ((flag_this_is_variable > 0)
  886.       && (flags == DTOR_FLAG || DECL_CONSTRUCTOR_P (function)))
  887.     constp = 0;
  888.  
  889.       if (DECL_CONSTRUCTOR_P (function))
  890.     {
  891.       if (TYPE_USES_VIRTUAL_BASECLASSES (ctype))
  892.         {
  893.           DECL_CONSTRUCTOR_FOR_VBASE_P (function) = 1;
  894.           /* In this case we need "in-charge" flag saying whether
  895.          this constructor is responsible for initialization
  896.          of virtual baseclasses or not.  */
  897.           parm = build_decl (PARM_DECL, in_charge_identifier, integer_type_node);
  898.           /* Mark the artificial `__in_chrg' parameter as "artificial".  */
  899.           SET_DECL_ARTIFICIAL (parm);
  900.           DECL_ARG_TYPE (parm) = integer_type_node;
  901.           DECL_REGISTER (parm) = 1;
  902.           TREE_CHAIN (parm) = last_function_parms;
  903.           last_function_parms = parm;
  904.         }
  905.     }
  906.  
  907.       parm = build_decl (PARM_DECL, this_identifier, type);
  908.       /* Mark the artificial `this' parameter as "artificial".  */
  909.       SET_DECL_ARTIFICIAL (parm);
  910.       DECL_ARG_TYPE (parm) = type;
  911.       /* We can make this a register, so long as we don't
  912.      accidentally complain if someone tries to take its address.  */
  913.       DECL_REGISTER (parm) = 1;
  914.       if (constp)
  915.     TREE_READONLY (parm) = 1;
  916.       TREE_CHAIN (parm) = last_function_parms;
  917.       last_function_parms = parm;
  918.     }
  919.  
  920.   if (flags == DTOR_FLAG)
  921.     {
  922.       char *buf, *dbuf;
  923.       tree const_integer_type = build_type_variant (integer_type_node, 1, 0);
  924.       int len = sizeof (DESTRUCTOR_DECL_PREFIX)-1;
  925.  
  926.       arg_types = hash_tree_chain (const_integer_type, void_list_node);
  927.       TREE_SIDE_EFFECTS (arg_types) = 1;
  928.       /* Build the overload name.  It will look like `7Example'.  */
  929.       if (IDENTIFIER_TYPE_VALUE (cname))
  930.     dbuf = build_overload_name (IDENTIFIER_TYPE_VALUE (cname), 1, 1);
  931.       else if (IDENTIFIER_LOCAL_VALUE (cname))
  932.     dbuf = build_overload_name (TREE_TYPE (IDENTIFIER_LOCAL_VALUE (cname)), 1, 1);
  933.       else
  934.       /* Using ctype fixes the `X::Y::~Y()' crash.  The cname has no type when
  935.      it's defined out of the class definition, since poplevel_class wipes
  936.      it out.  This used to be internal error 346.  */
  937.     dbuf = build_overload_name (ctype, 1, 1);
  938.       buf = (char *) alloca (strlen (dbuf) + sizeof (DESTRUCTOR_DECL_PREFIX));
  939.       bcopy (DESTRUCTOR_DECL_PREFIX, buf, len);
  940.       buf[len] = '\0';
  941.       strcat (buf, dbuf);
  942.       DECL_ASSEMBLER_NAME (function) = get_identifier (buf);
  943.       parm = build_decl (PARM_DECL, in_charge_identifier, const_integer_type);
  944.       /* Mark the artificial `__in_chrg' parameter as "artificial".  */
  945.       SET_DECL_ARTIFICIAL (parm);
  946.       TREE_USED (parm) = 1;
  947. #if 0
  948.       /* We don't need to mark the __in_chrg parameter itself as `const'
  949.       since its type is already `const int'.  In fact we MUST NOT mark
  950.       it as `const' cuz that will screw up the debug info (causing it
  951.       to say that the type of __in_chrg is `const const int').  */
  952.       TREE_READONLY (parm) = 1;
  953. #endif
  954.       DECL_ARG_TYPE (parm) = const_integer_type;
  955.       /* This is the same chain as DECL_ARGUMENTS (...).  */
  956.       TREE_CHAIN (last_function_parms) = parm;
  957.  
  958.       TREE_TYPE (function) = build_cplus_method_type (qualtype, void_type_node,
  959.                               arg_types);
  960.       TYPE_HAS_DESTRUCTOR (ctype) = 1;
  961.     }
  962.   else
  963.     {
  964.       tree these_arg_types;
  965.  
  966.       if (DECL_CONSTRUCTOR_FOR_VBASE_P (function))
  967.     {
  968.       arg_types = hash_tree_chain (integer_type_node,
  969.                        TREE_CHAIN (arg_types));
  970.       TREE_TYPE (function)
  971.         = build_cplus_method_type (qualtype,
  972.                        TREE_TYPE (TREE_TYPE (function)),
  973.                        arg_types);
  974.       arg_types = TYPE_ARG_TYPES (TREE_TYPE (function));
  975.     }
  976.  
  977.       these_arg_types = arg_types;
  978.  
  979.       if (TREE_CODE (TREE_TYPE (function)) == FUNCTION_TYPE)
  980.     /* Only true for static member functions.  */
  981.     these_arg_types = hash_tree_chain (TYPE_POINTER_TO (qualtype),
  982.                        arg_types);
  983.  
  984.       DECL_ASSEMBLER_NAME (function)
  985.     = build_decl_overload (fn_name, these_arg_types,
  986.                    1 + DECL_CONSTRUCTOR_P (function));
  987.  
  988. #if 0
  989.       /* This code is going into the compiler, but currently, it makes
  990.      libg++/src/Integer.cc not compile.  The problem is that the nice name
  991.      winds up going into the symbol table, and conversion operations look
  992.      for the manged name.  */
  993.       substitute_nice_name (function);
  994. #endif
  995.     }
  996.  
  997.   DECL_ARGUMENTS (function) = last_function_parms;
  998.   /* First approximations.  */
  999.   DECL_CONTEXT (function) = ctype;
  1000.   DECL_CLASS_CONTEXT (function) = ctype;
  1001. }
  1002.  
  1003. /* Work on the expr used by alignof (this is only called by the parser).  */
  1004. tree
  1005. grok_alignof (expr)
  1006.      tree expr;
  1007. {
  1008.   tree best, t;
  1009.   int bestalign;
  1010.  
  1011.   if (TREE_CODE (expr) == COMPONENT_REF
  1012.       && DECL_BIT_FIELD (TREE_OPERAND (expr, 1)))
  1013.     error ("`__alignof__' applied to a bit-field");
  1014.  
  1015.   if (TREE_CODE (expr) == INDIRECT_REF)
  1016.     {
  1017.       best = t = TREE_OPERAND (expr, 0);
  1018.       bestalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
  1019.  
  1020.       while (TREE_CODE (t) == NOP_EXPR
  1021.          && TREE_CODE (TREE_TYPE (TREE_OPERAND (t, 0))) == POINTER_TYPE)
  1022.     {
  1023.       int thisalign;
  1024.       t = TREE_OPERAND (t, 0);
  1025.       thisalign = TYPE_ALIGN (TREE_TYPE (TREE_TYPE (t)));
  1026.       if (thisalign > bestalign)
  1027.         best = t, bestalign = thisalign;
  1028.     }
  1029.       return c_alignof (TREE_TYPE (TREE_TYPE (best)));
  1030.     }
  1031.   else
  1032.     {
  1033.       /* ANSI says arrays and fns are converted inside comma.
  1034.      But we can't convert them in build_compound_expr
  1035.      because that would break commas in lvalues.
  1036.      So do the conversion here if operand was a comma.  */
  1037.       if (TREE_CODE (expr) == COMPOUND_EXPR
  1038.       && (TREE_CODE (TREE_TYPE (expr)) == ARRAY_TYPE
  1039.           || TREE_CODE (TREE_TYPE (expr)) == FUNCTION_TYPE))
  1040.     expr = default_conversion (expr);
  1041.       return c_alignof (TREE_TYPE (expr));
  1042.     }
  1043. }
  1044.  
  1045. /* Create an ARRAY_REF, checking for the user doing things backwards
  1046.    along the way.  */
  1047. tree
  1048. grok_array_decl (array_expr, index_exp)
  1049.      tree array_expr, index_exp;
  1050. {
  1051.   tree type = TREE_TYPE (array_expr);
  1052.   tree p1, p2, i1, i2;
  1053.  
  1054.   if (type == error_mark_node || index_exp == error_mark_node)
  1055.     return error_mark_node;
  1056.   if (type == NULL_TREE)
  1057.     {
  1058.       /* Something has gone very wrong.  Assume we are mistakenly reducing
  1059.      an expression instead of a declaration.  */
  1060.       error ("parser may be lost: is there a '{' missing somewhere?");
  1061.       return NULL_TREE;
  1062.     }
  1063.  
  1064.   if (TREE_CODE (type) == OFFSET_TYPE
  1065.       || TREE_CODE (type) == REFERENCE_TYPE)
  1066.     type = TREE_TYPE (type);
  1067.  
  1068.   /* If they have an `operator[]', use that.  */
  1069.   if (TYPE_LANG_SPECIFIC (type)
  1070.       && TYPE_OVERLOADS_ARRAY_REF (type))
  1071.     return build_opfncall (ARRAY_REF, LOOKUP_NORMAL,
  1072.                array_expr, index_exp, NULL_TREE);
  1073.  
  1074.   /* Otherwise, create an ARRAY_REF for a pointer or array type.  */
  1075.  
  1076.   if (TREE_CODE (type) == ARRAY_TYPE)
  1077.     p1 = array_expr;
  1078.   else
  1079.     p1 = build_expr_type_conversion (WANT_POINTER, array_expr, 0);
  1080.  
  1081.   if (TREE_CODE (TREE_TYPE (index_exp)) == ARRAY_TYPE)
  1082.     p2 = index_exp;
  1083.   else
  1084.     p2 = build_expr_type_conversion (WANT_POINTER, index_exp, 0);
  1085.  
  1086.   i1 = build_expr_type_conversion (WANT_INT | WANT_ENUM, array_expr, 0);
  1087.   i2 = build_expr_type_conversion (WANT_INT | WANT_ENUM, index_exp, 0);
  1088.  
  1089.   if ((p1 && i2) && (i1 && p2))
  1090.     error ("ambiguous conversion for array subscript");
  1091.  
  1092.   if (p1 && i2)
  1093.     array_expr = p1, index_exp = i2;
  1094.   else if (i1 && p2)
  1095.     array_expr = p2, index_exp = i1;
  1096.   else
  1097.     {
  1098.       cp_error ("invalid types `%T[%T]' for array subscript",
  1099.         type, TREE_TYPE (index_exp));
  1100.       return error_mark_node;
  1101.     }
  1102.  
  1103.   if (array_expr == error_mark_node || index_exp == error_mark_node)
  1104.     error ("ambiguous conversion for array subscript");
  1105.  
  1106.   return build_array_ref (array_expr, index_exp);
  1107. }
  1108.  
  1109. /* Given the cast expression EXP, checking out its validity.   Either return
  1110.    an error_mark_node if there was an unavoidable error, return a cast to
  1111.    void for trying to delete a pointer w/ the value 0, or return the
  1112.    call to delete.  If DOING_VEC is 1, we handle things differently
  1113.    for doing an array delete.  If DOING_VEC is 2, they gave us the
  1114.    array size as an argument to delete.
  1115.    Implements ARM $5.3.4.  This is called from the parser.  */
  1116. tree
  1117. delete_sanity (exp, size, doing_vec, use_global_delete)
  1118.      tree exp, size;
  1119.      int doing_vec, use_global_delete;
  1120. {
  1121.   tree t = stabilize_reference (convert_from_reference (exp));
  1122.   tree type = TREE_TYPE (t);
  1123.   enum tree_code code = TREE_CODE (type);
  1124.   /* For a regular vector delete (aka, no size argument) we will pass
  1125.      this down as a NULL_TREE into build_vec_delete.  */
  1126.   tree maxindex = NULL_TREE;
  1127.   /* This is used for deleting arrays.  */
  1128.   tree elt_size;
  1129.  
  1130.   switch (doing_vec)
  1131.     {
  1132.     case 2:
  1133.       maxindex = build_binary_op (MINUS_EXPR, size, integer_one_node, 1);
  1134.       if (! flag_traditional)
  1135.     pedwarn ("anachronistic use of array size in vector delete");
  1136.       /* Fall through.  */
  1137.     case 1:
  1138.       elt_size = c_sizeof (type);
  1139.       break;
  1140.     default:
  1141.       if (code != POINTER_TYPE)
  1142.     {
  1143.       cp_error ("type `%#T' argument given to `delete', expected pointer",
  1144.             type);
  1145.       return error_mark_node;
  1146.     }
  1147.  
  1148.       /* Deleting a pointer with the value zero is valid and has no effect.  */
  1149.       if (integer_zerop (t))
  1150.     return build1 (NOP_EXPR, void_type_node, t);
  1151.     }
  1152.  
  1153.   if (code == POINTER_TYPE)
  1154.     {
  1155. #if 0
  1156.       /* As of Valley Forge, you can delete a pointer to constant.  */
  1157.       /* You can't delete a pointer to constant.  */
  1158.       if (TREE_READONLY (TREE_TYPE (type)))
  1159.     {
  1160.       error ("`const *' cannot be deleted");
  1161.       return error_mark_node;
  1162.     }
  1163. #endif
  1164.       /* You also can't delete functions.  */
  1165.       if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
  1166.     {
  1167.       error ("cannot delete a function");
  1168.       return error_mark_node;
  1169.     }
  1170.     }
  1171.  
  1172. #if 0
  1173.   /* If the type has no destructor, then we should build a regular
  1174.      delete, instead of a vector delete.  Otherwise, we would end
  1175.      up passing a bogus offset into __builtin_delete, which is
  1176.      not expecting it.  */ 
  1177.   if (doing_vec
  1178.       && TREE_CODE (type) == POINTER_TYPE
  1179.       && !TYPE_HAS_DESTRUCTOR (TREE_TYPE (type)))
  1180.     {
  1181.       doing_vec = 0;
  1182.       use_global_delete = 1;
  1183.     }
  1184. #endif
  1185.  
  1186.   if (doing_vec)
  1187.     return build_vec_delete (t, maxindex, elt_size, integer_one_node,
  1188.                  integer_two_node, use_global_delete);
  1189.   else
  1190.     {
  1191.       if (IS_AGGR_TYPE (TREE_TYPE (type))
  1192.       && TYPE_GETS_REG_DELETE (TREE_TYPE (type)))
  1193.     {
  1194.       /* Only do access checking here; we'll be calling op delete
  1195.          from the destructor.  */
  1196.       tree tmp = build_opfncall (DELETE_EXPR, LOOKUP_NORMAL, t,
  1197.                      size_zero_node, NULL_TREE);
  1198.       if (tmp == error_mark_node)
  1199.         return error_mark_node;
  1200.     }
  1201.  
  1202.       return build_delete (type, t, integer_three_node,
  1203.                LOOKUP_NORMAL|LOOKUP_HAS_IN_CHARGE,
  1204.                use_global_delete);
  1205.     }
  1206. }
  1207.  
  1208. /* Sanity check: report error if this function FUNCTION is not
  1209.    really a member of the class (CTYPE) it is supposed to belong to.
  1210.    CNAME is the same here as it is for grokclassfn above.  */
  1211.  
  1212. void
  1213. check_classfn (ctype, cname, function)
  1214.      tree ctype, cname, function;
  1215. {
  1216.   tree fn_name = DECL_NAME (function);
  1217.   tree fndecl;
  1218.   tree method_vec = CLASSTYPE_METHOD_VEC (ctype);
  1219.   tree *methods = 0;
  1220.   tree *end = 0;
  1221.  
  1222.   if (method_vec != 0)
  1223.     {
  1224.       methods = &TREE_VEC_ELT (method_vec, 0);
  1225.       end = TREE_VEC_END (method_vec);
  1226.  
  1227.       /* First suss out ctors and dtors.  */
  1228.       if (*methods
  1229.       && (fn_name == cname || fn_name == DECL_NAME (*methods)))
  1230.     goto got_it;
  1231.  
  1232.       while (++methods != end)
  1233.     {
  1234.       if (fn_name == DECL_NAME (*methods))
  1235.         {
  1236.         got_it:
  1237.           fndecl = *methods;
  1238.           while (fndecl)
  1239.         {
  1240.           if (DECL_ASSEMBLER_NAME (function) == DECL_ASSEMBLER_NAME (fndecl))
  1241.             return;
  1242. #if 0
  1243.           /* This should work, but causes libg++ to fail
  1244.              make check-tFix. */
  1245.           /* We have to do more extensive argument checking here, as
  1246.              the name may have been changed by asm("new_name"). */
  1247.           if (decls_match (function, fndecl))
  1248.             return;
  1249. #else
  1250.           if (DECL_NAME (function) == DECL_NAME (fndecl))
  1251.             {
  1252.               tree p1 = TYPE_ARG_TYPES (TREE_TYPE (function));
  1253.               tree p2 = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
  1254.  
  1255.               /* Get rid of the this parameter on functions that become
  1256.              static. */
  1257.               if (DECL_STATIC_FUNCTION_P (fndecl)
  1258.               && TREE_CODE (TREE_TYPE (function)) == METHOD_TYPE)
  1259.             p1 = TREE_CHAIN (p1);
  1260.  
  1261.               if (comptypes (TREE_TYPE (TREE_TYPE (function)),
  1262.                      TREE_TYPE (TREE_TYPE (fndecl)), 1)
  1263.               && compparms (p1, p2, 3))
  1264.             return;
  1265.             }
  1266. #endif
  1267.           fndecl = DECL_CHAIN (fndecl);
  1268.         }
  1269.           break;        /* loser */
  1270.         }
  1271.     }
  1272.     }
  1273.  
  1274.   if (methods != end)
  1275.     cp_error ("argument list for `%#D' does not match any in class `%T'",
  1276.           function, ctype);
  1277.   else
  1278.     {
  1279.       methods = 0;
  1280.       cp_error ("no `%#D' member function declared in class `%T'",
  1281.         function, ctype);
  1282.     }
  1283.  
  1284.   /* If we did not find the method in the class, add it to
  1285.      avoid spurious errors.  */
  1286.   add_method (ctype, methods, function);
  1287. }
  1288.  
  1289. /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
  1290.    of a structure component, returning a FIELD_DECL node.
  1291.    QUALS is a list of type qualifiers for this decl (such as for declaring
  1292.    const member functions).
  1293.  
  1294.    This is done during the parsing of the struct declaration.
  1295.    The FIELD_DECL nodes are chained together and the lot of them
  1296.    are ultimately passed to `build_struct' to make the RECORD_TYPE node.
  1297.  
  1298.    C++:
  1299.  
  1300.    If class A defines that certain functions in class B are friends, then
  1301.    the way I have set things up, it is B who is interested in permission
  1302.    granted by A.  However, it is in A's context that these declarations
  1303.    are parsed.  By returning a void_type_node, class A does not attempt
  1304.    to incorporate the declarations of the friends within its structure.
  1305.  
  1306.    DO NOT MAKE ANY CHANGES TO THIS CODE WITHOUT MAKING CORRESPONDING
  1307.    CHANGES TO CODE IN `start_method'.  */
  1308.  
  1309. tree
  1310. grokfield (declarator, declspecs, raises, init, asmspec_tree)
  1311.      tree declarator, declspecs, raises, init, asmspec_tree;
  1312. {
  1313.   register tree value;
  1314.   char *asmspec = 0;
  1315.   int flags = LOOKUP_ONLYCONVERTING;
  1316.  
  1317.   /* Convert () initializers to = initializers.  */
  1318.   if (init == NULL_TREE && declarator != NULL_TREE
  1319.       && TREE_CODE (declarator) == CALL_EXPR
  1320.       && TREE_OPERAND (declarator, 0)
  1321.       && (TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE
  1322.       || TREE_CODE (TREE_OPERAND (declarator, 0)) == SCOPE_REF)
  1323.       && parmlist_is_exprlist (TREE_OPERAND (declarator, 1)))
  1324.     {
  1325.       init = TREE_OPERAND (declarator, 1);
  1326.       declarator = TREE_OPERAND (declarator, 0);
  1327.       flags = 0;
  1328.     }
  1329.  
  1330.   if (init
  1331.       && TREE_CODE (init) == TREE_LIST
  1332.       && TREE_VALUE (init) == error_mark_node
  1333.       && TREE_CHAIN (init) == NULL_TREE)
  1334.     init = NULL_TREE;
  1335.  
  1336.   value = grokdeclarator (declarator, declspecs, FIELD, init != 0, raises);
  1337.   if (! value)
  1338.     return value; /* friend or constructor went bad.  */
  1339.  
  1340.   /* Pass friendly classes back.  */
  1341.   if (TREE_CODE (value) == VOID_TYPE)
  1342.     return void_type_node;
  1343.  
  1344.   if (DECL_NAME (value) != NULL_TREE
  1345.       && IDENTIFIER_POINTER (DECL_NAME (value))[0] == '_'
  1346.       && ! strcmp (IDENTIFIER_POINTER (DECL_NAME (value)), "_vptr"))
  1347.     cp_error ("member `%D' conflicts with virtual function table field name", value);
  1348.  
  1349.   /* Stash away type declarations.  */
  1350.   if (TREE_CODE (value) == TYPE_DECL)
  1351.     {
  1352.       DECL_NONLOCAL (value) = 1;
  1353.       DECL_CONTEXT (value) = current_class_type;
  1354.       DECL_CLASS_CONTEXT (value) = current_class_type;
  1355.       CLASSTYPE_LOCAL_TYPEDECLS (current_class_type) = 1;
  1356.  
  1357.       /* If we declare a typedef name for something that has no name,
  1358.      the typedef name is used for linkage.  See 7.1.3 p4 94/0158. */
  1359.       if (TYPE_NAME (TREE_TYPE (value))
  1360.       && TREE_CODE (TYPE_NAME (TREE_TYPE (value))) == TYPE_DECL
  1361.       && ANON_AGGRNAME_P (TYPE_IDENTIFIER (TREE_TYPE (value))))
  1362.     {
  1363.       TYPE_NAME (TREE_TYPE (value)) = value;
  1364.       TYPE_STUB_DECL (TREE_TYPE (value)) = value;
  1365.     }
  1366.  
  1367.       pushdecl_class_level (value);
  1368.       return value;
  1369.     }
  1370.  
  1371.   if (IS_SIGNATURE (current_class_type)
  1372.       && TREE_CODE (value) != FUNCTION_DECL)
  1373.     {
  1374.       error ("field declaration not allowed in signature");
  1375.       return void_type_node;
  1376.     }
  1377.  
  1378.   if (DECL_IN_AGGR_P (value))
  1379.     {
  1380.       cp_error ("`%D' is already defined in the class %T", value,
  1381.           DECL_CONTEXT (value));
  1382.       return void_type_node;
  1383.     }
  1384.  
  1385.   if (flag_cadillac)
  1386.     cadillac_start_decl (value);
  1387.  
  1388.   if (asmspec_tree)
  1389.     asmspec = TREE_STRING_POINTER (asmspec_tree);
  1390.  
  1391.   if (init)
  1392.     {
  1393.       if (IS_SIGNATURE (current_class_type)
  1394.       && TREE_CODE (value) == FUNCTION_DECL)
  1395.     {
  1396.       error ("function declarations cannot have initializers in signature");
  1397.       init = NULL_TREE;
  1398.     }
  1399.       else if (TREE_CODE (value) == FUNCTION_DECL)
  1400.     {
  1401.       grok_function_init (value, init);
  1402.       init = NULL_TREE;
  1403.     }
  1404.       else if (pedantic && TREE_CODE (value) != VAR_DECL)
  1405.     /* Already complained in grokdeclarator.  */
  1406.     init = NULL_TREE;
  1407.       else
  1408.     {
  1409.       /* We allow initializers to become parameters to base
  1410.              initializers.  */
  1411.       if (TREE_CODE (init) == TREE_LIST)
  1412.         {
  1413.           if (TREE_CHAIN (init) == NULL_TREE)
  1414.         init = TREE_VALUE (init);
  1415.           else
  1416.         init = digest_init (TREE_TYPE (value), init, (tree *)0);
  1417.         }
  1418.       
  1419.       if (TREE_CODE (init) == CONST_DECL)
  1420.         init = DECL_INITIAL (init);
  1421.       else if (TREE_READONLY_DECL_P (init))
  1422.         init = decl_constant_value (init);
  1423.       else if (TREE_CODE (init) == CONSTRUCTOR)
  1424.         init = digest_init (TREE_TYPE (value), init, (tree *)0);
  1425.       my_friendly_assert (TREE_PERMANENT (init), 192);
  1426.       if (init == error_mark_node)
  1427.         /* We must make this look different than `error_mark_node'
  1428.            because `decl_const_value' would mis-interpret it
  1429.            as only meaning that this VAR_DECL is defined.  */
  1430.         init = build1 (NOP_EXPR, TREE_TYPE (value), init);
  1431.       else if (! TREE_CONSTANT (init))
  1432.         {
  1433.           /* We can allow references to things that are effectively
  1434.          static, since references are initialized with the address.  */
  1435.           if (TREE_CODE (TREE_TYPE (value)) != REFERENCE_TYPE
  1436.           || (TREE_STATIC (init) == 0
  1437.               && (TREE_CODE_CLASS (TREE_CODE (init)) != 'd'
  1438.               || DECL_EXTERNAL (init) == 0)))
  1439.         {
  1440.           error ("field initializer is not constant");
  1441.           init = error_mark_node;
  1442.         }
  1443.         }
  1444.     }
  1445.     }
  1446.  
  1447.   /* The corresponding pop_obstacks is in cp_finish_decl.  */
  1448.   push_obstacks_nochange ();
  1449.  
  1450.   if (TREE_CODE (value) == VAR_DECL)
  1451.     {
  1452.       /* We cannot call pushdecl here, because that would
  1453.      fill in the value of our TREE_CHAIN.  Instead, we
  1454.      modify cp_finish_decl to do the right thing, namely, to
  1455.      put this decl out straight away.  */
  1456.       if (TREE_PUBLIC (value))
  1457.     {
  1458.       /* current_class_type can be NULL_TREE in case of error.  */
  1459.       if (asmspec == 0 && current_class_type)
  1460.         {
  1461.           TREE_PUBLIC (value) = 1;
  1462.           DECL_INITIAL (value) = error_mark_node;
  1463.           DECL_ASSEMBLER_NAME (value)
  1464.         = build_static_name (current_class_type, DECL_NAME (value));
  1465.         }
  1466.       pending_statics = perm_tree_cons (NULL_TREE, value, pending_statics);
  1467.  
  1468.       /* Static consts need not be initialized in the class definition.  */
  1469.       if (init != NULL_TREE && TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (value)))
  1470.         {
  1471.           static int explanation = 0;
  1472.  
  1473.           error ("initializer invalid for static member with constructor");
  1474.           if (explanation++ == 0)
  1475.         error ("(you really want to initialize it separately)");
  1476.           init = 0;
  1477.         }
  1478.       /* Force the compiler to know when an uninitialized static
  1479.          const member is being used.  */
  1480.       if (TYPE_READONLY (value) && init == 0)
  1481.         TREE_USED (value) = 1;
  1482.     }
  1483.       DECL_INITIAL (value) = init;
  1484.       DECL_IN_AGGR_P (value) = 1;
  1485.  
  1486.       cp_finish_decl (value, init, asmspec_tree, 1, flags);
  1487.       pushdecl_class_level (value);
  1488.       return value;
  1489.     }
  1490.   if (TREE_CODE (value) == FIELD_DECL)
  1491.     {
  1492.       if (asmspec)
  1493.     {
  1494.       /* This must override the asm specifier which was placed
  1495.          by grokclassfn.  Lay this out fresh.  */
  1496.       DECL_RTL (value) = NULL_RTX;
  1497.       DECL_ASSEMBLER_NAME (value) = get_identifier (asmspec);
  1498.     }
  1499.       if (DECL_INITIAL (value) == error_mark_node)
  1500.     init = error_mark_node;
  1501.       cp_finish_decl (value, init, asmspec_tree, 1, flags);
  1502.       DECL_INITIAL (value) = init;
  1503.       DECL_IN_AGGR_P (value) = 1;
  1504.       return value;
  1505.     }
  1506.   if (TREE_CODE (value) == FUNCTION_DECL)
  1507.     {
  1508.       if (DECL_CHAIN (value) != NULL_TREE)
  1509.     {
  1510.       /* Need a fresh node here so that we don't get circularity
  1511.          when we link these together.  */
  1512.       value = copy_node (value);
  1513.       /* When does this happen?  */
  1514.       my_friendly_assert (init == NULL_TREE, 193);
  1515.     }
  1516.       if (asmspec)
  1517.     {
  1518.       /* This must override the asm specifier which was placed
  1519.          by grokclassfn.  Lay this out fresh.  */
  1520.       DECL_RTL (value) = NULL_RTX;
  1521.       DECL_ASSEMBLER_NAME (value) = get_identifier (asmspec);
  1522.     }
  1523.       cp_finish_decl (value, init, asmspec_tree, 1, flags);
  1524.  
  1525.       /* Pass friends back this way.  */
  1526.       if (DECL_FRIEND_P (value))
  1527.     return void_type_node;
  1528.  
  1529. #if 0 /* Just because a fn is declared doesn't mean we'll try to define it.  */
  1530.       if (current_function_decl && ! IS_SIGNATURE (current_class_type))
  1531.     cp_error ("method `%#D' of local class must be defined in class body",
  1532.           value);
  1533. #endif
  1534.  
  1535.       DECL_IN_AGGR_P (value) = 1;
  1536.       return value;
  1537.     }
  1538.   my_friendly_abort (21);
  1539.   /* NOTREACHED */
  1540.   return NULL_TREE;
  1541. }
  1542.  
  1543. /* Like `grokfield', but for bitfields.
  1544.    WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.  */
  1545.  
  1546. tree
  1547. grokbitfield (declarator, declspecs, width)
  1548.      tree declarator, declspecs, width;
  1549. {
  1550.   register tree value = grokdeclarator (declarator, declspecs, BITFIELD, 0, NULL_TREE);
  1551.  
  1552.   if (! value) return NULL_TREE; /* friends went bad.  */
  1553.  
  1554.   /* Pass friendly classes back.  */
  1555.   if (TREE_CODE (value) == VOID_TYPE)
  1556.     return void_type_node;
  1557.  
  1558.   if (TREE_CODE (value) == TYPE_DECL)
  1559.     {
  1560.       cp_error ("cannot declare `%D' to be a bitfield type", value);
  1561.       return NULL_TREE;
  1562.     }
  1563.  
  1564.   if (IS_SIGNATURE (current_class_type))
  1565.     {
  1566.       error ("field declaration not allowed in signature");
  1567.       return void_type_node;
  1568.     }
  1569.  
  1570.   if (DECL_IN_AGGR_P (value))
  1571.     {
  1572.       cp_error ("`%D' is already defined in the class %T", value,
  1573.           DECL_CONTEXT (value));
  1574.       return void_type_node;
  1575.     }
  1576.  
  1577.   GNU_xref_member (current_class_name, value);
  1578.  
  1579.   if (TREE_STATIC (value))
  1580.     {
  1581.       cp_error ("static member `%D' cannot be a bitfield", value);
  1582.       return NULL_TREE;
  1583.     }
  1584.   cp_finish_decl (value, NULL_TREE, NULL_TREE, 0, 0);
  1585.  
  1586.   if (width != error_mark_node)
  1587.     {
  1588.       /* detect invalid field size.  */
  1589.       if (TREE_CODE (width) == CONST_DECL)
  1590.     width = DECL_INITIAL (width);
  1591.       else if (TREE_READONLY_DECL_P (width))
  1592.     width = decl_constant_value (width);
  1593.       if (TREE_CODE (width) != INTEGER_CST)
  1594.     {
  1595.       cp_error ("structure field `%D' width not an integer constant",
  1596.               value);
  1597.       DECL_INITIAL (value) = NULL_TREE;
  1598.     }
  1599.       else
  1600.     {
  1601.       constant_expression_warning (width);
  1602.       DECL_INITIAL (value) = width;
  1603.       DECL_BIT_FIELD (value) = 1;
  1604.     }
  1605.     }
  1606.  
  1607.   DECL_IN_AGGR_P (value) = 1;
  1608.   return value;
  1609. }
  1610.  
  1611. #if 0
  1612. /* Like GROKFIELD, except that the declarator has been
  1613.    buried in DECLSPECS.  Find the declarator, and
  1614.    return something that looks like it came from
  1615.    GROKFIELD.  */
  1616. tree
  1617. groktypefield (declspecs, parmlist)
  1618.      tree declspecs;
  1619.      tree parmlist;
  1620. {
  1621.   tree spec = declspecs;
  1622.   tree prev = NULL_TREE;
  1623.  
  1624.   tree type_id = NULL_TREE;
  1625.   tree quals = NULL_TREE;
  1626.   tree lengths = NULL_TREE;
  1627.   tree decl = NULL_TREE;
  1628.  
  1629.   while (spec)
  1630.     {
  1631.       register tree id = TREE_VALUE (spec);
  1632.  
  1633.       if (TREE_CODE (spec) != TREE_LIST)
  1634.     /* Certain parse errors slip through.  For example,
  1635.        `int class ();' is not caught by the parser. Try
  1636.        weakly to recover here.  */
  1637.     return NULL_TREE;
  1638.  
  1639.       if (TREE_CODE (id) == TYPE_DECL
  1640.       || (TREE_CODE (id) == IDENTIFIER_NODE && TREE_TYPE (id)))
  1641.     {
  1642.       /* We have a constructor/destructor or
  1643.          conversion operator.  Use it.  */
  1644.       if (prev)
  1645.         TREE_CHAIN (prev) = TREE_CHAIN (spec);
  1646.       else
  1647.         declspecs = TREE_CHAIN (spec);
  1648.  
  1649.       type_id = id;
  1650.       goto found;
  1651.     }
  1652.       prev = spec;
  1653.       spec = TREE_CHAIN (spec);
  1654.     }
  1655.  
  1656.   /* Nope, we have a conversion operator to a scalar type or something
  1657.      else, that includes things like constructor declarations for
  1658.      templates.  */
  1659.   spec = declspecs;
  1660.   while (spec)
  1661.     {
  1662.       tree id = TREE_VALUE (spec);
  1663.  
  1664.       if (TREE_CODE (id) == IDENTIFIER_NODE)
  1665.     {
  1666.       if (id == ridpointers[(int)RID_INT]
  1667.           || id == ridpointers[(int)RID_DOUBLE]
  1668.           || id == ridpointers[(int)RID_FLOAT]
  1669.           || id == ridpointers[(int)RID_WCHAR])
  1670.         {
  1671.           if (type_id)
  1672.         error ("extra `%s' ignored",
  1673.                IDENTIFIER_POINTER (id));
  1674.           else
  1675.         type_id = id;
  1676.         }
  1677.       else if (id == ridpointers[(int)RID_LONG]
  1678.            || id == ridpointers[(int)RID_SHORT]
  1679.            || id == ridpointers[(int)RID_CHAR])
  1680.         {
  1681.           lengths = tree_cons (NULL_TREE, id, lengths);
  1682.         }
  1683.       else if (id == ridpointers[(int)RID_VOID])
  1684.         {
  1685.           if (type_id)
  1686.         error ("spurious `void' type ignored");
  1687.           else
  1688.         error ("conversion to `void' type invalid");
  1689.         }
  1690.       else if (id == ridpointers[(int)RID_AUTO]
  1691.            || id == ridpointers[(int)RID_REGISTER]
  1692.            || id == ridpointers[(int)RID_TYPEDEF]
  1693.            || id == ridpointers[(int)RID_CONST]
  1694.            || id == ridpointers[(int)RID_VOLATILE])
  1695.         {
  1696.           error ("type specifier `%s' used invalidly",
  1697.              IDENTIFIER_POINTER (id));
  1698.         }
  1699.       else if (id == ridpointers[(int)RID_FRIEND]
  1700.            || id == ridpointers[(int)RID_VIRTUAL]
  1701.            || id == ridpointers[(int)RID_INLINE]
  1702.            || id == ridpointers[(int)RID_UNSIGNED]
  1703.            || id == ridpointers[(int)RID_SIGNED]
  1704.            || id == ridpointers[(int)RID_STATIC]
  1705.            || id == ridpointers[(int)RID_EXTERN])
  1706.         {
  1707.           quals = tree_cons (NULL_TREE, id, quals);
  1708.         }
  1709.       else
  1710.         {
  1711.           /* Happens when we have a global typedef
  1712.          and a class-local member function with
  1713.          the same name.  */
  1714.           type_id = id;
  1715.           goto found;
  1716.         }
  1717.     }
  1718.       else if (TREE_CODE (id) == RECORD_TYPE)
  1719.     {
  1720.       type_id = TYPE_NAME (id);
  1721.       if (TREE_CODE (type_id) == TYPE_DECL)
  1722.         type_id = DECL_NAME (type_id);
  1723.       if (type_id == NULL_TREE)
  1724.         error ("identifier for aggregate type conversion omitted");
  1725.     }
  1726.       else if (TREE_CODE_CLASS (TREE_CODE (id)) == 't')
  1727.     error ("`operator' missing on conversion operator or tag missing from type");
  1728.       else
  1729.     my_friendly_abort (194);
  1730.       spec = TREE_CHAIN (spec);
  1731.     }
  1732.  
  1733.   if (type_id)
  1734.     declspecs = chainon (lengths, quals);
  1735.   else if (lengths)
  1736.     {
  1737.       if (TREE_CHAIN (lengths))
  1738.     error ("multiple length specifiers");
  1739.       type_id = ridpointers[(int)RID_INT];
  1740.       declspecs = chainon (lengths, quals);
  1741.     }
  1742.   else if (quals)
  1743.     {
  1744.       error ("no type given, defaulting to `operator int ...'");
  1745.       type_id = ridpointers[(int)RID_INT];
  1746.       declspecs = quals;
  1747.     }
  1748.   else
  1749.     return NULL_TREE;
  1750.  
  1751.  found:
  1752.   decl = grokdeclarator (build_parse_node (CALL_EXPR, type_id, parmlist, NULL_TREE),
  1753.              declspecs, FIELD, 0, NULL_TREE);
  1754.   if (decl == NULL_TREE)
  1755.     return NULL_TREE;
  1756.  
  1757.   if (TREE_CODE (decl) == FUNCTION_DECL && DECL_CHAIN (decl) != NULL_TREE)
  1758.     {
  1759.       /* Need a fresh node here so that we don't get circularity
  1760.      when we link these together.  */
  1761.       decl = copy_node (decl);
  1762.     }
  1763.  
  1764.   if (decl == void_type_node
  1765.       || (TREE_CODE (decl) == FUNCTION_DECL
  1766.       && TREE_CODE (TREE_TYPE (decl)) != METHOD_TYPE))
  1767.     /* bunch of friends.  */
  1768.     return decl;
  1769.  
  1770.   if (DECL_IN_AGGR_P (decl))
  1771.     {
  1772.       cp_error ("`%D' already defined in the class ", decl);
  1773.       return void_type_node;
  1774.     }
  1775.  
  1776.   cp_finish_decl (decl, NULL_TREE, NULL_TREE, 0, 0);
  1777.  
  1778.   /* If this declaration is common to another declaration
  1779.      complain about such redundancy, and return NULL_TREE
  1780.      so that we don't build a circular list.  */
  1781.   if (DECL_CHAIN (decl))
  1782.     {
  1783.       cp_error ("function `%D' declared twice in class %T", decl,
  1784.           DECL_CONTEXT (decl));
  1785.       return NULL_TREE;
  1786.     }
  1787.   DECL_IN_AGGR_P (decl) = 1;
  1788.   return decl;
  1789. }
  1790. #endif
  1791.  
  1792. tree
  1793. grokoptypename (declspecs, declarator)
  1794.      tree declspecs, declarator;
  1795. {
  1796.   tree t = grokdeclarator (declarator, declspecs, TYPENAME, 0, NULL_TREE);
  1797.   return build_typename_overload (t);
  1798. }
  1799.  
  1800. /* When a function is declared with an initializer,
  1801.    do the right thing.  Currently, there are two possibilities:
  1802.  
  1803.    class B
  1804.    {
  1805.     public:
  1806.      // initialization possibility #1.
  1807.      virtual void f () = 0;
  1808.      int g ();
  1809.    };
  1810.    
  1811.    class D1 : B
  1812.    {
  1813.     public:
  1814.      int d1;
  1815.      // error, no f ();
  1816.    };
  1817.    
  1818.    class D2 : B
  1819.    {
  1820.     public:
  1821.      int d2;
  1822.      void f ();
  1823.    };
  1824.    
  1825.    class D3 : B
  1826.    {
  1827.     public:
  1828.      int d3;
  1829.      // initialization possibility #2
  1830.      void f () = B::f;
  1831.    };
  1832.  
  1833. */
  1834.  
  1835. int
  1836. copy_assignment_arg_p (parmtype, virtualp)
  1837.      tree parmtype;
  1838.      int virtualp;
  1839. {
  1840.   if (TREE_CODE (parmtype) == REFERENCE_TYPE)
  1841.     parmtype = TREE_TYPE (parmtype);
  1842.  
  1843.   if ((TYPE_MAIN_VARIANT (parmtype) == current_class_type)
  1844.       || (virtualp && DERIVED_FROM_P (parmtype, current_class_type)))
  1845.     return 1;
  1846.  
  1847.   return 0;
  1848. }
  1849.  
  1850. static void
  1851. grok_function_init (decl, init)
  1852.      tree decl;
  1853.      tree init;
  1854. {
  1855.   /* An initializer for a function tells how this function should
  1856.      be inherited.  */
  1857.   tree type = TREE_TYPE (decl);
  1858.  
  1859.   if (TREE_CODE (type) == FUNCTION_TYPE)
  1860.     cp_error ("initializer specified for non-member function `%D'", decl);
  1861.   else if (DECL_VINDEX (decl) == NULL_TREE)
  1862.     cp_error ("initializer specified for non-virtual method `%D'", decl);
  1863.   else if (integer_zerop (init))
  1864.     {
  1865. #if 0
  1866.       /* Mark this function as being "defined".  */
  1867.       DECL_INITIAL (decl) = error_mark_node;
  1868.       /* pure virtual destructors must be defined. */
  1869.       /* pure virtual needs to be defined (as abort) only when put in 
  1870.      vtbl. For wellformed call, it should be itself. pr4737 */
  1871.       if (!DESTRUCTOR_NAME_P (DECL_ASSEMBLER_NAME (decl)))
  1872.     {
  1873.       extern tree abort_fndecl;
  1874.       /* Give this node rtl from `abort'.  */
  1875.       DECL_RTL (decl) = DECL_RTL (abort_fndecl);
  1876.     }
  1877. #endif
  1878.       DECL_ABSTRACT_VIRTUAL_P (decl) = 1;
  1879.       if (DECL_NAME (decl) == ansi_opname [(int) MODIFY_EXPR])
  1880.     {
  1881.       tree parmtype
  1882.         = TREE_VALUE (TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (decl))));
  1883.  
  1884.       if (copy_assignment_arg_p (parmtype, 1))
  1885.         TYPE_HAS_ABSTRACT_ASSIGN_REF (current_class_type) = 1;
  1886.     }
  1887.     }
  1888.   else if (TREE_CODE (init) == OFFSET_REF
  1889.        && TREE_OPERAND (init, 0) == NULL_TREE
  1890.        && TREE_CODE (TREE_TYPE (init)) == METHOD_TYPE)
  1891.     {
  1892.       tree basetype = DECL_CLASS_CONTEXT (init);
  1893.       tree basefn = TREE_OPERAND (init, 1);
  1894.       if (TREE_CODE (basefn) != FUNCTION_DECL)
  1895.     cp_error ("non-method initializer invalid for method `%D'", decl);
  1896.       else if (! BINFO_OFFSET_ZEROP (TYPE_BINFO (DECL_CLASS_CONTEXT (basefn))))
  1897.     sorry ("base member function from other than first base class");
  1898.       else
  1899.     {
  1900.       tree binfo = get_binfo (basetype, TYPE_METHOD_BASETYPE (type), 1);
  1901.       if (binfo == error_mark_node)
  1902.         ;
  1903.       else if (binfo == 0)
  1904.         error_not_base_type (TYPE_METHOD_BASETYPE (TREE_TYPE (init)),
  1905.                  TYPE_METHOD_BASETYPE (type));
  1906.       else
  1907.         {
  1908.           /* Mark this function as being defined,
  1909.          and give it new rtl.  */
  1910.           DECL_INITIAL (decl) = error_mark_node;
  1911.           DECL_RTL (decl) = DECL_RTL (basefn);
  1912.         }
  1913.     }
  1914.     }
  1915.   else
  1916.     cp_error ("invalid initializer for virtual method `%D'", decl);
  1917. }
  1918.  
  1919. /* When we get a declaration of the form
  1920.  
  1921.    type cname::fname ...
  1922.  
  1923.    the node for `cname::fname' gets built here in a special way.
  1924.    Namely, we push into `cname's scope.  When this declaration is
  1925.    processed, we pop back out.  */
  1926. tree
  1927. build_push_scope (cname, name)
  1928.      tree cname;
  1929.      tree name;
  1930. {
  1931.   extern int current_class_depth;
  1932.   tree ctype, rval;
  1933.   int is_ttp = 0;
  1934.  
  1935.   if (cname == error_mark_node)
  1936.     return error_mark_node;
  1937.  
  1938.   ctype = IDENTIFIER_TYPE_VALUE (cname);
  1939.  
  1940.   if (TREE_CODE (ctype) == TEMPLATE_TYPE_PARM)
  1941.     is_ttp = 1;
  1942.   else if (ctype == NULL_TREE || ! IS_AGGR_TYPE (ctype))
  1943.     {
  1944.       cp_error ("`%T' not defined as aggregate type", cname);
  1945.       return name;
  1946.     }
  1947.   else if (IS_SIGNATURE (ctype))
  1948.     {
  1949.       error ("cannot push into signature scope, scope resolution operator ignored");
  1950.       return name;
  1951.     }
  1952.  
  1953.   rval = build_parse_node (SCOPE_REF, cname, name);
  1954.  
  1955.   /* Don't need to push the scope if we're already in it.
  1956.      We also don't need to push the scope for a ptr-to-member/method.  */
  1957.  
  1958.   if (ctype == current_class_type || TREE_CODE (name) != IDENTIFIER_NODE
  1959.       || is_ttp)
  1960.     return rval;
  1961.  
  1962.   /* We do need to push the scope in this case, since CTYPE helps
  1963.      determine subsequent initializers (i.e., Foo::Bar x = foo_enum_1;).  */
  1964.  
  1965.   push_nested_class (ctype, 3);
  1966.   TREE_COMPLEXITY (rval) = current_class_depth;
  1967.   return rval;
  1968. }
  1969.  
  1970. void
  1971. cplus_decl_attributes (decl, attributes, prefix_attributes)
  1972.      tree decl, attributes, prefix_attributes;
  1973. {
  1974.   if (decl == NULL_TREE || decl == void_type_node)
  1975.     return;
  1976.  
  1977.   if (TREE_CODE (decl) == TEMPLATE_DECL)
  1978.     decl = DECL_TEMPLATE_RESULT (decl);
  1979.  
  1980.   decl_attributes (decl, attributes, prefix_attributes);
  1981.  
  1982.   if (TREE_CODE (decl) == TYPE_DECL)
  1983.     SET_IDENTIFIER_TYPE_VALUE (DECL_NAME (decl), TREE_TYPE (decl));
  1984. }
  1985.  
  1986. /* CONSTRUCTOR_NAME:
  1987.    Return the name for the constructor (or destructor) for the
  1988.    specified class.  Argument can be RECORD_TYPE, TYPE_DECL, or
  1989.    IDENTIFIER_NODE.  When given a template, this routine doesn't
  1990.    lose the specialization.  */
  1991. tree
  1992. constructor_name_full (thing)
  1993.      tree thing;
  1994. {
  1995.   if (TREE_CODE (thing) == UNINSTANTIATED_P_TYPE)
  1996.     return DECL_NAME (UPT_TEMPLATE (thing));
  1997.   if (IS_AGGR_TYPE_CODE (TREE_CODE (thing)))
  1998.     {
  1999.       if (TYPE_WAS_ANONYMOUS (thing) && TYPE_HAS_CONSTRUCTOR (thing))
  2000.     thing = DECL_NAME (TREE_VEC_ELT (TYPE_METHODS (thing), 0));
  2001.       else
  2002.     thing = TYPE_NAME (thing);
  2003.     }
  2004.   if (TREE_CODE (thing) == TYPE_DECL
  2005.       || (TREE_CODE (thing) == TEMPLATE_DECL
  2006.       && DECL_TEMPLATE_IS_CLASS (thing)))
  2007.     thing = DECL_NAME (thing);
  2008.   my_friendly_assert (TREE_CODE (thing) == IDENTIFIER_NODE, 197);
  2009.   return thing;
  2010. }
  2011.  
  2012. /* CONSTRUCTOR_NAME:
  2013.    Return the name for the constructor (or destructor) for the
  2014.    specified class.  Argument can be RECORD_TYPE, TYPE_DECL, or
  2015.    IDENTIFIER_NODE.  When given a template, return the plain
  2016.    unspecialized name.  */
  2017. tree
  2018. constructor_name (thing)
  2019.      tree thing;
  2020. {
  2021.   tree t;
  2022.   thing = constructor_name_full (thing);
  2023.   t = IDENTIFIER_TEMPLATE (thing);
  2024.   if (!t)
  2025.     return thing;
  2026.   t = TREE_PURPOSE (t);
  2027.   return DECL_NAME (t);
  2028. }
  2029.  
  2030. /* Cache the value of this class's main virtual function table pointer
  2031.    in a register variable.  This will save one indirection if a
  2032.    more than one virtual function call is made this function.  */
  2033. void
  2034. setup_vtbl_ptr ()
  2035. {
  2036.   extern rtx base_init_expr;
  2037.  
  2038.   if (base_init_expr == 0
  2039.       && DECL_CONSTRUCTOR_P (current_function_decl))
  2040.     emit_base_init (current_class_type, 0);
  2041. }
  2042.  
  2043. /* Record the existence of an addressable inline function.  */
  2044. void
  2045. mark_inline_for_output (decl)
  2046.      tree decl;
  2047. {
  2048.   decl = DECL_MAIN_VARIANT (decl);
  2049.   if (DECL_SAVED_INLINE (decl))
  2050.     return;
  2051.   my_friendly_assert (TREE_PERMANENT (decl), 363);
  2052.   DECL_SAVED_INLINE (decl) = 1;
  2053. #if 0
  2054.   if (DECL_PENDING_INLINE_INFO (decl) != 0
  2055.       && ! DECL_PENDING_INLINE_INFO (decl)->deja_vu)
  2056.     {
  2057.       struct pending_inline *t = pending_inlines;
  2058.       my_friendly_assert (DECL_SAVED_INSNS (decl) == 0, 198);
  2059.       while (t)
  2060.     {
  2061.       if (t == DECL_PENDING_INLINE_INFO (decl))
  2062.         break;
  2063.       t = t->next;
  2064.     }
  2065.       if (t == 0)
  2066.     {
  2067.       t = DECL_PENDING_INLINE_INFO (decl);
  2068.       t->next = pending_inlines;
  2069.       pending_inlines = t;
  2070.     }
  2071.       DECL_PENDING_INLINE_INFO (decl) = 0;
  2072.     }
  2073. #endif
  2074.   saved_inlines = perm_tree_cons (NULL_TREE, decl, saved_inlines);
  2075. }
  2076.  
  2077. void
  2078. clear_temp_name ()
  2079. {
  2080.   temp_name_counter = 0;
  2081. }
  2082.  
  2083. /* Hand off a unique name which can be used for variable we don't really
  2084.    want to know about anyway, for example, the anonymous variables which
  2085.    are needed to make references work.  Declare this thing so we can use it.
  2086.    The variable created will be of type TYPE.
  2087.  
  2088.    STATICP is nonzero if this variable should be static.  */
  2089.  
  2090. tree
  2091. get_temp_name (type, staticp)
  2092.      tree type;
  2093.      int staticp;
  2094. {
  2095.   char buf[sizeof (AUTO_TEMP_FORMAT) + 20];
  2096.   tree decl;
  2097.   int toplev = toplevel_bindings_p ();
  2098.  
  2099.   push_obstacks_nochange ();
  2100.   if (toplev || staticp)
  2101.     {
  2102.       end_temporary_allocation ();
  2103.       sprintf (buf, AUTO_TEMP_FORMAT, global_temp_name_counter++);
  2104.       decl = pushdecl_top_level (build_decl (VAR_DECL, get_identifier (buf), type));
  2105.     }
  2106.   else
  2107.     {
  2108.       sprintf (buf, AUTO_TEMP_FORMAT, temp_name_counter++);
  2109.       decl = pushdecl (build_decl (VAR_DECL, get_identifier (buf), type));
  2110.     }
  2111.   TREE_USED (decl) = 1;
  2112.   TREE_STATIC (decl) = staticp;
  2113.  
  2114.   /* If this is a local variable, then lay out its rtl now.
  2115.      Otherwise, callers of this function are responsible for dealing
  2116.      with this variable's rtl.  */
  2117.   if (! toplev)
  2118.     {
  2119.       expand_decl (decl);
  2120.       expand_decl_init (decl);
  2121.     }
  2122.   pop_obstacks ();
  2123.  
  2124.   return decl;
  2125. }
  2126.  
  2127. /* Get a variable which we can use for multiple assignments.
  2128.    It is not entered into current_binding_level, because
  2129.    that breaks things when it comes time to do final cleanups
  2130.    (which take place "outside" the binding contour of the function).  */
  2131. tree
  2132. get_temp_regvar (type, init)
  2133.      tree type, init;
  2134. {
  2135.   static char buf[sizeof (AUTO_TEMP_FORMAT) + 20] = { '_' };
  2136.   tree decl;
  2137.  
  2138.   sprintf (buf+1, AUTO_TEMP_FORMAT, temp_name_counter++);
  2139.   decl = build_decl (VAR_DECL, get_identifier (buf), type);
  2140.   TREE_USED (decl) = 1;
  2141.   DECL_REGISTER (decl) = 1;
  2142.  
  2143.   if (init)
  2144.     store_init_value (decl, init);
  2145.  
  2146.   /* We can expand these without fear, since they cannot need
  2147.      constructors or destructors.  */
  2148.   expand_decl (decl);
  2149.   expand_decl_init (decl);
  2150.  
  2151.   if (type_needs_gc_entry (type))
  2152.     DECL_GC_OFFSET (decl) = size_int (++current_function_obstack_index);
  2153.  
  2154.   return decl;
  2155. }
  2156.  
  2157. /* Make the macro TEMP_NAME_P available to units which do not
  2158.    include c-tree.h.  */
  2159. int
  2160. temp_name_p (decl)
  2161.      tree decl;
  2162. {
  2163.   return TEMP_NAME_P (decl);
  2164. }
  2165.  
  2166. /* Finish off the processing of a UNION_TYPE structure.
  2167.    If there are static members, then all members are
  2168.    static, and must be laid out together.  If the
  2169.    union is an anonymous union, we arrange for that
  2170.    as well.  PUBLIC_P is nonzero if this union is
  2171.    not declared static.  */
  2172. void
  2173. finish_anon_union (anon_union_decl)
  2174.      tree anon_union_decl;
  2175. {
  2176.   tree type = TREE_TYPE (anon_union_decl);
  2177.   tree field, main_decl = NULL_TREE;
  2178.   tree elems = NULL_TREE;
  2179.   int public_p = TREE_PUBLIC (anon_union_decl);
  2180.   int static_p = TREE_STATIC (anon_union_decl);
  2181.   int external_p = DECL_EXTERNAL (anon_union_decl);
  2182.  
  2183.   if ((field = TYPE_FIELDS (type)) == NULL_TREE)
  2184.     return;
  2185.  
  2186.   if (public_p)
  2187.     {
  2188.       error ("global anonymous unions must be declared static");
  2189.       return;
  2190.     }
  2191.  
  2192.   for (; field; field = TREE_CHAIN (field))
  2193.     {
  2194.       tree decl;
  2195.       if (TREE_CODE (field) != FIELD_DECL)
  2196.     continue;
  2197.  
  2198.       decl = build_decl (VAR_DECL, DECL_NAME (field), TREE_TYPE (field));
  2199.       /* tell `pushdecl' that this is not tentative.  */
  2200.       DECL_INITIAL (decl) = error_mark_node;
  2201.       TREE_PUBLIC (decl) = public_p;
  2202.       TREE_STATIC (decl) = static_p;
  2203.       DECL_EXTERNAL (decl) = external_p;
  2204.       decl = pushdecl (decl);
  2205.  
  2206.       /* Only write out one anon union element--choose the one that
  2207.      can hold them all.  */
  2208.       if (main_decl == NULL_TREE
  2209.       && 1 == simple_cst_equal (DECL_SIZE (decl),
  2210.                     DECL_SIZE (anon_union_decl)))
  2211.     {
  2212.       main_decl = decl;
  2213.     }
  2214.       else
  2215.     {
  2216.       /* ??? This causes there to be no debug info written out
  2217.          about this decl.  */
  2218.       TREE_ASM_WRITTEN (decl) = 1;
  2219.     }
  2220.  
  2221.       DECL_INITIAL (decl) = NULL_TREE;
  2222.       /* If there's a cleanup to do, it belongs in the
  2223.      TREE_PURPOSE of the following TREE_LIST.  */
  2224.       elems = tree_cons (NULL_TREE, decl, elems);
  2225.       TREE_TYPE (elems) = type;
  2226.     }
  2227.   if (static_p)
  2228.     {
  2229.       if (main_decl)
  2230.     {
  2231.       make_decl_rtl (main_decl, 0, toplevel_bindings_p ());
  2232.       DECL_RTL (anon_union_decl) = DECL_RTL (main_decl);
  2233.     }
  2234.       else
  2235.     {
  2236.       warning ("anonymous union with no members");
  2237.       return;
  2238.     }
  2239.     }
  2240.  
  2241.   /* The following call assumes that there are never any cleanups
  2242.      for anonymous unions--a reasonable assumption.  */
  2243.   expand_anon_union_decl (anon_union_decl, NULL_TREE, elems);
  2244.  
  2245.   if (flag_cadillac)
  2246.     cadillac_finish_anon_union (anon_union_decl);
  2247. }
  2248.  
  2249. /* Finish and output a table which is generated by the compiler.
  2250.    NAME is the name to give the table.
  2251.    TYPE is the type of the table entry.
  2252.    INIT is all the elements in the table.
  2253.    PUBLICP is non-zero if this table should be given external access.  */
  2254. tree
  2255. finish_table (name, type, init, publicp)
  2256.      tree name, type, init;
  2257.      int publicp;
  2258. {
  2259.   tree itype, atype, decl;
  2260.   static tree empty_table;
  2261.   int is_empty = 0;
  2262.   tree asmspec;
  2263.  
  2264.   itype = build_index_type (size_int (list_length (init) - 1));
  2265.   atype = build_cplus_array_type (type, itype);
  2266.   layout_type (atype);
  2267.  
  2268.   if (TREE_VALUE (init) == integer_zero_node
  2269.       && TREE_CHAIN (init) == NULL_TREE)
  2270.     {
  2271. #if 0
  2272.       if (empty_table == NULL_TREE)
  2273. #endif
  2274.     {
  2275.       empty_table = get_temp_name (atype, 1);
  2276.       init = build (CONSTRUCTOR, atype, NULL_TREE, init);
  2277.       TREE_CONSTANT (init) = 1;
  2278.       TREE_STATIC (init) = 1;
  2279.       DECL_INITIAL (empty_table) = init;
  2280.       asmspec = build_string (IDENTIFIER_LENGTH (DECL_NAME (empty_table)),
  2281.                   IDENTIFIER_POINTER (DECL_NAME (empty_table)));
  2282.       cp_finish_decl (empty_table, NULL_TREE, asmspec, 0, 0);
  2283.     }
  2284.       is_empty = 1;
  2285.     }
  2286.  
  2287.   if (name == NULL_TREE)
  2288.     {
  2289.       if (is_empty)
  2290.     return empty_table;
  2291.       decl = get_temp_name (atype, 1);
  2292.     }
  2293.   else
  2294.     {
  2295.       decl = build_decl (VAR_DECL, name, atype);
  2296.       decl = pushdecl (decl);
  2297.       TREE_STATIC (decl) = 1;
  2298.     }
  2299.  
  2300.   if (is_empty == 0)
  2301.     {
  2302.       TREE_PUBLIC (decl) = publicp;
  2303.       init = build (CONSTRUCTOR, atype, NULL_TREE, init);
  2304.       TREE_CONSTANT (init) = 1;
  2305.       TREE_STATIC (init) = 1;
  2306.       DECL_INITIAL (decl) = init;
  2307.       asmspec = build_string (IDENTIFIER_LENGTH (DECL_NAME (decl)),
  2308.                   IDENTIFIER_POINTER (DECL_NAME (decl)));
  2309.     }
  2310.   else
  2311.     {
  2312.       /* This will cause DECL to point to EMPTY_TABLE in rtl-land.  */
  2313.       DECL_EXTERNAL (decl) = 1;
  2314.       TREE_STATIC (decl) = 0;
  2315.       init = 0;
  2316.       asmspec = build_string (IDENTIFIER_LENGTH (DECL_NAME (empty_table)),
  2317.                   IDENTIFIER_POINTER (DECL_NAME (empty_table)));
  2318.     }
  2319.  
  2320.   cp_finish_decl (decl, NULL_TREE, asmspec, 0, 0);
  2321.   return decl;
  2322. }
  2323.  
  2324. /* Finish processing a builtin type TYPE.  It's name is NAME,
  2325.    its fields are in the array FIELDS.  LEN is the number of elements
  2326.    in FIELDS minus one, or put another way, it is the maximum subscript
  2327.    used in FIELDS.
  2328.  
  2329.    It is given the same alignment as ALIGN_TYPE.  */
  2330. void
  2331. finish_builtin_type (type, name, fields, len, align_type)
  2332.      tree type;
  2333.      char *name;
  2334.      tree fields[];
  2335.      int len;
  2336.      tree align_type;
  2337. {
  2338.   register int i;
  2339.  
  2340.   TYPE_FIELDS (type) = fields[0];
  2341.   for (i = 0; i < len; i++)
  2342.     {
  2343.       layout_type (TREE_TYPE (fields[i]));
  2344.       DECL_FIELD_CONTEXT (fields[i]) = type;
  2345.       TREE_CHAIN (fields[i]) = fields[i+1];
  2346.     }
  2347.   DECL_FIELD_CONTEXT (fields[i]) = type;
  2348.   DECL_CLASS_CONTEXT (fields[i]) = type;
  2349.   TYPE_ALIGN (type) = TYPE_ALIGN (align_type);
  2350.   layout_type (type);
  2351. #if 0 /* not yet, should get fixed properly later */
  2352.   TYPE_NAME (type) = make_type_decl (get_identifier (name), type);
  2353. #else
  2354.   TYPE_NAME (type) = build_decl (TYPE_DECL, get_identifier (name), type);
  2355. #endif
  2356.   layout_decl (TYPE_NAME (type), 0);
  2357. }
  2358.  
  2359. /* Auxiliary functions to make type signatures for
  2360.    `operator new' and `operator delete' correspond to
  2361.    what compiler will be expecting.  */
  2362.  
  2363. extern tree sizetype;
  2364.  
  2365. tree
  2366. coerce_new_type (type)
  2367.      tree type;
  2368. {
  2369.   int e1 = 0, e2 = 0;
  2370.  
  2371.   if (TREE_CODE (type) == METHOD_TYPE)
  2372.     type = build_function_type (TREE_TYPE (type), TREE_CHAIN (TYPE_ARG_TYPES (type)));
  2373.   if (TREE_TYPE (type) != ptr_type_node)
  2374.     e1 = 1, error ("`operator new' must return type `void *'");
  2375.  
  2376.   /* Technically the type must be `size_t', but we may not know
  2377.      what that is.  */
  2378.   if (TYPE_ARG_TYPES (type) == NULL_TREE)
  2379.     e1 = 1, error ("`operator new' takes type `size_t' parameter");
  2380.   else if (TREE_CODE (TREE_VALUE (TYPE_ARG_TYPES (type))) != INTEGER_TYPE
  2381.        || TYPE_PRECISION (TREE_VALUE (TYPE_ARG_TYPES (type))) != TYPE_PRECISION (sizetype))
  2382.     e2 = 1, error ("`operator new' takes type `size_t' as first parameter");
  2383.   if (e2)
  2384.     type = build_function_type (ptr_type_node, tree_cons (NULL_TREE, sizetype, TREE_CHAIN (TYPE_ARG_TYPES (type))));
  2385.   else if (e1)
  2386.     type = build_function_type (ptr_type_node, TYPE_ARG_TYPES (type));
  2387.   return type;
  2388. }
  2389.  
  2390. tree
  2391. coerce_delete_type (type)
  2392.      tree type;
  2393. {
  2394.   int e1 = 0, e2 = 0, e3 = 0;
  2395.   tree arg_types = TYPE_ARG_TYPES (type);
  2396.  
  2397.   if (TREE_CODE (type) == METHOD_TYPE)
  2398.     {
  2399.       type = build_function_type (TREE_TYPE (type), TREE_CHAIN (arg_types));
  2400.       arg_types = TREE_CHAIN (arg_types);
  2401.     }
  2402.   if (TREE_TYPE (type) != void_type_node)
  2403.     e1 = 1, error ("`operator delete' must return type `void'");
  2404.   if (arg_types == NULL_TREE
  2405.       || TREE_VALUE (arg_types) != ptr_type_node)
  2406.     e2 = 1, error ("`operator delete' takes type `void *' as first parameter");
  2407.  
  2408.   if (arg_types
  2409.       && TREE_CHAIN (arg_types)
  2410.       && TREE_CHAIN (arg_types) != void_list_node)
  2411.     {
  2412.       /* Again, technically this argument must be `size_t', but again
  2413.      we may not know what that is.  */
  2414.       tree t2 = TREE_VALUE (TREE_CHAIN (arg_types));
  2415.       if (TREE_CODE (t2) != INTEGER_TYPE
  2416.       || TYPE_PRECISION (t2) != TYPE_PRECISION (sizetype))
  2417.     e3 = 1, error ("second argument to `operator delete' must be of type `size_t'");
  2418.       else if (TREE_CHAIN (TREE_CHAIN (arg_types)) != void_list_node)
  2419.     {
  2420.       e3 = 1;
  2421.       if (TREE_CHAIN (TREE_CHAIN (arg_types)))
  2422.         error ("too many arguments in declaration of `operator delete'");
  2423.       else
  2424.         error ("`...' invalid in specification of `operator delete'");
  2425.     }
  2426.     }
  2427.   if (e3)
  2428.     arg_types = tree_cons (NULL_TREE, ptr_type_node, build_tree_list (NULL_TREE, sizetype));
  2429.   else if (e3 |= e2)
  2430.     {
  2431.       if (arg_types == NULL_TREE)
  2432.     arg_types = tree_cons (NULL_TREE, ptr_type_node, void_list_node);
  2433.       else
  2434.     arg_types = tree_cons (NULL_TREE, ptr_type_node, TREE_CHAIN (arg_types));
  2435.     }
  2436.   else e3 |= e1;
  2437.  
  2438.   if (e3)
  2439.     type = build_function_type (void_type_node, arg_types);
  2440.  
  2441.   return type;
  2442. }
  2443.  
  2444. static void
  2445. mark_vtable_entries (decl)
  2446.      tree decl;
  2447. {
  2448.   tree entries = TREE_CHAIN (CONSTRUCTOR_ELTS (DECL_INITIAL (decl)));
  2449.  
  2450.   for (; entries; entries = TREE_CHAIN (entries))
  2451.     {
  2452.       tree fnaddr = FNADDR_FROM_VTABLE_ENTRY (TREE_VALUE (entries));
  2453.       tree fn = TREE_OPERAND (fnaddr, 0);
  2454.       TREE_ADDRESSABLE (fn) = 1;
  2455.       if (DECL_ABSTRACT_VIRTUAL_P (fn))
  2456.     {
  2457.       extern tree abort_fndecl;
  2458.       if (flag_vtable_thunks)
  2459.         fnaddr = TREE_VALUE (entries);
  2460.       TREE_OPERAND (fnaddr, 0) = fn = abort_fndecl;
  2461.     }
  2462.       assemble_external (fn);
  2463.     }
  2464. }
  2465.  
  2466. /* Set TREE_PUBLIC and/or DECL_EXTERN on the vtable DECL,
  2467.    based on TYPE and other static flags.
  2468.  
  2469.    Note that anything public is tagged TREE_PUBLIC, whether
  2470.    it's public in this file or in another one.  */
  2471.  
  2472. void
  2473. import_export_vtable (decl, type, final)
  2474.      tree decl, type;
  2475.      int final;
  2476. {
  2477.   if (DECL_INTERFACE_KNOWN (decl))
  2478.     return;
  2479.  
  2480.   /* +e0 or +e1 */
  2481.   if (write_virtuals < 2 && write_virtuals != 0)
  2482.     {
  2483.       TREE_PUBLIC (decl) = 1;
  2484.       if (write_virtuals < 0)
  2485.     DECL_EXTERNAL (decl) = 1;
  2486.       DECL_INTERFACE_KNOWN (decl) = 1;
  2487.     }
  2488.   else if (CLASSTYPE_INTERFACE_KNOWN (type))
  2489.     {
  2490.       TREE_PUBLIC (decl) = 1;
  2491.       DECL_EXTERNAL (decl) = ! CLASSTYPE_VTABLE_NEEDS_WRITING (type);
  2492.       DECL_INTERFACE_KNOWN (decl) = 1;
  2493.     }
  2494.   else
  2495.     {
  2496.       /* We can only wait to decide if we have real non-inline virtual
  2497.      functions in our class, or if we come from a template.  */
  2498.  
  2499.       int found = CLASSTYPE_TEMPLATE_INSTANTIATION (type);
  2500.  
  2501.       if (! found && ! final)
  2502.     {
  2503.       tree method;
  2504.       for (method = CLASSTYPE_METHODS (type); method != NULL_TREE;
  2505.            method = DECL_NEXT_METHOD (method))
  2506.         if (DECL_VINDEX (method) != NULL_TREE
  2507.         && ! DECL_THIS_INLINE (method)
  2508.         && ! DECL_ABSTRACT_VIRTUAL_P (method))
  2509.           {
  2510.         found = 1;
  2511.         break;
  2512.           }
  2513.     }
  2514.  
  2515.       if (final || ! found)
  2516.     {
  2517. #ifdef ASSEMBLE_EXTERNAL
  2518.       if (TREE_PUBLIC (decl))
  2519.         cp_error ("all virtual functions redeclared inline");
  2520. #endif
  2521.       if (SUPPORTS_WEAK)
  2522.         DECL_WEAK (decl) = 1;
  2523.       else
  2524.         TREE_PUBLIC (decl) = 0;
  2525.       DECL_EXTERNAL (decl) = 0;
  2526.     }
  2527.       else
  2528.     {
  2529.       TREE_PUBLIC (decl) = 1;
  2530.       DECL_EXTERNAL (decl) = 1;
  2531.     }
  2532.     }
  2533. }
  2534.  
  2535. static void
  2536. import_export_template (type)
  2537.      tree type;
  2538. {
  2539.   if (CLASSTYPE_IMPLICIT_INSTANTIATION (type)
  2540.       && ! flag_implicit_templates
  2541.       && CLASSTYPE_INTERFACE_UNKNOWN (type))
  2542.     {
  2543.       SET_CLASSTYPE_INTERFACE_KNOWN (type);
  2544.       CLASSTYPE_INTERFACE_ONLY (type) = 1;
  2545.       CLASSTYPE_VTABLE_NEEDS_WRITING (type) = 0;
  2546.     }
  2547. }
  2548.     
  2549. static void
  2550. finish_prevtable_vardecl (prev, vars)
  2551.      tree prev, vars;
  2552. {
  2553.   tree ctype = DECL_CONTEXT (vars);
  2554.   import_export_template (ctype);
  2555.  
  2556.   if (CLASSTYPE_INTERFACE_UNKNOWN (ctype) && TYPE_VIRTUAL_P (ctype)
  2557.       && ! CLASSTYPE_TEMPLATE_INSTANTIATION (ctype))
  2558.     {
  2559.       tree method;
  2560.       for (method = CLASSTYPE_METHODS (ctype); method != NULL_TREE;
  2561.        method = DECL_NEXT_METHOD (method))
  2562.     {
  2563.       if (DECL_VINDEX (method) != NULL_TREE
  2564.           && !DECL_THIS_INLINE (method)
  2565.           && !DECL_ABSTRACT_VIRTUAL_P (method))
  2566.         {
  2567.           SET_CLASSTYPE_INTERFACE_KNOWN (ctype);
  2568.           CLASSTYPE_VTABLE_NEEDS_WRITING (ctype) = ! DECL_EXTERNAL (method);
  2569.           CLASSTYPE_INTERFACE_ONLY (ctype) = DECL_EXTERNAL (method);
  2570.           break;
  2571.         }
  2572.     }
  2573.     }
  2574.  
  2575.   import_export_vtable (vars, ctype, 1);
  2576.  
  2577.   /* We cannot use TREE_USED here, as it may be set by the expanding of a
  2578.      ctor that is used to build a global object.  The long term plan is to
  2579.      make the TD entries statically initialized and move this to
  2580.      finish_vtable_vardecl time.  */
  2581.   if (flag_rtti && write_virtuals >= 0
  2582.       && ! DECL_EXTERNAL (vars) && (TREE_PUBLIC (vars) || 1 || TREE_USED (vars)))
  2583.     {
  2584.       /* Kick out the type descriptor before we dump out global
  2585.      initializers, as they are initialized at run time and
  2586.      we have to find them when we scan for things that need initialized
  2587.      at the top level.  */
  2588.       build_t_desc (ctype, 1);
  2589.     }
  2590. }
  2591.     
  2592. static void
  2593. finish_vtable_vardecl (prev, vars)
  2594.      tree prev, vars;
  2595. {
  2596.   if (write_virtuals >= 0
  2597.       && ! DECL_EXTERNAL (vars) && (TREE_PUBLIC (vars) || TREE_USED (vars)))
  2598.     {
  2599. #if 0
  2600.       /* The long term plan it to make the TD entries statically initialized,
  2601.      have the entries built and emitted here.  When that happens, this
  2602.      can be enabled, and the other call to build_t_desc removed.  */
  2603.       /* Kick out the type descriptor before writing out the vtable.  */
  2604.       if (flag_rtti)
  2605.     build_t_desc (DECL_CONTEXT (vars), 1);
  2606. #endif
  2607.  
  2608.       /* Write it out.  */
  2609.       mark_vtable_entries (vars);
  2610.       if (TREE_TYPE (DECL_INITIAL (vars)) == 0)
  2611.     store_init_value (vars, DECL_INITIAL (vars));
  2612.  
  2613. #ifdef DWARF_DEBUGGING_INFO
  2614.       if (write_symbols == DWARF_DEBUG)
  2615.     {
  2616.       /* Mark the VAR_DECL node representing the vtable itself as a
  2617.          "gratuitous" one, thereby forcing dwarfout.c to ignore it.
  2618.          It is rather important that such things be ignored because
  2619.          any effort to actually generate DWARF for them will run
  2620.          into trouble when/if we encounter code like:
  2621.  
  2622.         #pragma interface
  2623.         struct S { virtual void member (); };
  2624.  
  2625.           because the artificial declaration of the vtable itself (as
  2626.           manufactured by the g++ front end) will say that the vtable
  2627.           is a static member of `S' but only *after* the debug output
  2628.           for the definition of `S' has already been output.  This causes
  2629.           grief because the DWARF entry for the definition of the vtable
  2630.           will try to refer back to an earlier *declaration* of the
  2631.           vtable as a static member of `S' and there won't be one.
  2632.           We might be able to arrange to have the "vtable static member"
  2633.           attached to the member list for `S' before the debug info for
  2634.           `S' get written (which would solve the problem) but that would
  2635.           require more intrusive changes to the g++ front end.  */
  2636.  
  2637.       DECL_IGNORED_P (vars) = 1;
  2638.     }
  2639. #endif /* DWARF_DEBUGGING_INFO */
  2640.  
  2641.       rest_of_decl_compilation (vars, NULL_PTR, 1, 1);
  2642.     }
  2643.   else if (! TREE_USED (vars))
  2644.     /* We don't know what to do with this one yet.  */
  2645.     return;
  2646.  
  2647.   /* We know that PREV must be non-zero here.  */
  2648.   TREE_CHAIN (prev) = TREE_CHAIN (vars);
  2649. }
  2650.  
  2651. static void
  2652. prune_vtable_vardecl (prev, vars)
  2653.      tree prev, vars;
  2654. {
  2655.   /* We know that PREV must be non-zero here.  */
  2656.   TREE_CHAIN (prev) = TREE_CHAIN (vars);
  2657. }
  2658.  
  2659. void
  2660. walk_vtables (typedecl_fn, vardecl_fn)
  2661.      register void (*typedecl_fn)();
  2662.      register void (*vardecl_fn)();
  2663. {
  2664.   tree prev, vars;
  2665.  
  2666.   for (prev = 0, vars = getdecls (); vars; vars = TREE_CHAIN (vars))
  2667.     {
  2668.       register tree type = TREE_TYPE (vars);
  2669.  
  2670.       if (TREE_CODE (vars) == VAR_DECL && DECL_VIRTUAL_P (vars))
  2671.     {
  2672.       if (vardecl_fn) (*vardecl_fn) (prev, vars);
  2673.  
  2674.       if (prev && TREE_CHAIN (prev) != vars)
  2675.         continue;
  2676.     }
  2677.       else if (TREE_CODE (vars) == TYPE_DECL
  2678.            && type != error_mark_node
  2679.            && TYPE_LANG_SPECIFIC (type)
  2680.            && CLASSTYPE_VSIZE (type))
  2681.     {
  2682.       if (typedecl_fn) (*typedecl_fn) (prev, vars);
  2683.     }
  2684.  
  2685.       prev = vars;
  2686.     }
  2687. }
  2688.  
  2689. static void
  2690. finish_sigtable_vardecl (prev, vars)
  2691.      tree prev, vars;
  2692. {
  2693.   /* We don't need to mark sigtable entries as addressable here as is done
  2694.      for vtables.  Since sigtables, unlike vtables, are always written out,
  2695.      that was already done in build_signature_table_constructor.  */
  2696.  
  2697.   rest_of_decl_compilation (vars, NULL_PTR, 1, 1);
  2698.  
  2699.   /* We know that PREV must be non-zero here.  */
  2700.   TREE_CHAIN (prev) = TREE_CHAIN (vars);
  2701. }
  2702.  
  2703. void
  2704. walk_sigtables (typedecl_fn, vardecl_fn)
  2705.      register void (*typedecl_fn)();
  2706.      register void (*vardecl_fn)();
  2707. {
  2708.   tree prev, vars;
  2709.  
  2710.   for (prev = 0, vars = getdecls (); vars; vars = TREE_CHAIN (vars))
  2711.     {
  2712.       register tree type = TREE_TYPE (vars);
  2713.  
  2714.       if (TREE_CODE (vars) == TYPE_DECL
  2715.       && type != error_mark_node
  2716.       && IS_SIGNATURE (type))
  2717.     {
  2718.       if (typedecl_fn) (*typedecl_fn) (prev, vars);
  2719.     }
  2720.       else if (TREE_CODE (vars) == VAR_DECL
  2721.            && TREE_TYPE (vars) != error_mark_node
  2722.            && IS_SIGNATURE (TREE_TYPE (vars)))
  2723.     {
  2724.       if (vardecl_fn) (*vardecl_fn) (prev, vars);
  2725.     }
  2726.       else
  2727.     prev = vars;
  2728.     }
  2729. }
  2730.  
  2731. /* Determines the proper settings of TREE_PUBLIC and DECL_EXTERNAL for an
  2732.    inline function at end-of-file.  */
  2733.  
  2734. void
  2735. import_export_inline (decl)
  2736.      tree decl;
  2737. {
  2738.   if (DECL_INTERFACE_KNOWN (decl))
  2739.     return;
  2740.  
  2741.   if (DECL_TEMPLATE_INSTANTIATION (decl))
  2742.     {
  2743.       if (DECL_IMPLICIT_INSTANTIATION (decl) && flag_implicit_templates)
  2744.     {
  2745.       if (SUPPORTS_WEAK)
  2746.         DECL_WEAK (decl) = 1;
  2747.       else
  2748.         TREE_PUBLIC (decl) = 0;
  2749.     }
  2750.       else
  2751.     DECL_NOT_REALLY_EXTERN (decl) = 0;
  2752.     }
  2753.   else if (DECL_FUNCTION_MEMBER_P (decl))
  2754.     {
  2755.       tree ctype = DECL_CLASS_CONTEXT (decl);
  2756.       if (CLASSTYPE_INTERFACE_KNOWN (ctype))
  2757.     {
  2758.       DECL_NOT_REALLY_EXTERN (decl)
  2759.         = ! (CLASSTYPE_INTERFACE_ONLY (ctype)
  2760.          || (DECL_THIS_INLINE (decl) && ! flag_implement_inlines));
  2761.     }
  2762.       else if (SUPPORTS_WEAK)
  2763.     DECL_WEAK (decl) = 1;
  2764.       else
  2765.     TREE_PUBLIC (decl) = 0;
  2766.     }
  2767.   else if (DECL_C_STATIC (decl))
  2768.     TREE_PUBLIC (decl) = 0;
  2769.   else if (SUPPORTS_WEAK)
  2770.     DECL_WEAK (decl) = 1;
  2771.   else
  2772.     TREE_PUBLIC (decl) = 0;
  2773.  
  2774.   DECL_INTERFACE_KNOWN (decl) = 1;
  2775. }
  2776.  
  2777. extern int parse_time, varconst_time;
  2778.  
  2779. #define TIMEVAR(VAR, BODY)    \
  2780. do { int otime = get_run_time (); BODY; VAR += get_run_time () - otime; } while (0)
  2781.  
  2782. /* This routine is called from the last rule in yyparse ().
  2783.    Its job is to create all the code needed to initialize and
  2784.    destroy the global aggregates.  We do the destruction
  2785.    first, since that way we only need to reverse the decls once.  */
  2786.  
  2787. void
  2788. finish_file ()
  2789. {
  2790.   extern int lineno;
  2791.   int start_time, this_time;
  2792.  
  2793.   tree fnname;
  2794.   tree vars;
  2795.   int needs_cleaning = 0, needs_messing_up = 0;
  2796.  
  2797.   if (flag_detailed_statistics)
  2798.     dump_tree_statistics ();
  2799.  
  2800.   /* Bad parse errors.  Just forget about it.  */
  2801.   if (! global_bindings_p () || current_class_type)
  2802.     return;
  2803.  
  2804.   start_time = get_run_time ();
  2805.  
  2806.   /* Push into C language context, because that's all
  2807.      we'll need here.  */
  2808.   push_lang_context (lang_name_c);
  2809.  
  2810.   /* Otherwise, GDB can get confused, because in only knows
  2811.      about source for LINENO-1 lines.  */
  2812.   lineno -= 1;
  2813.  
  2814.   interface_unknown = 1;
  2815.   interface_only = 0;
  2816.  
  2817. #if 1
  2818.   /* The reason for pushing garbage onto the global_binding_level is to
  2819.      ensure that we can slice out _DECLs which pertain to virtual function
  2820.      tables.  If the last thing pushed onto the global_binding_level was a
  2821.      virtual function table, then slicing it out would slice away all the
  2822.      decls (i.e., we lose the head of the chain).
  2823.  
  2824.      There are several ways of getting the same effect, from changing the
  2825.      way that iterators over the chain treat the elements that pertain to
  2826.      virtual function tables, moving the implementation of this code to
  2827.      decl.c (where we can manipulate global_binding_level directly),
  2828.      popping the garbage after pushing it and slicing away the vtable
  2829.      stuff, or just leaving it alone. */
  2830.  
  2831.   /* Make last thing in global scope not be a virtual function table.  */
  2832. #if 0 /* not yet, should get fixed properly later */
  2833.   vars = make_type_decl (get_identifier (" @%$#@!"), integer_type_node);
  2834. #else
  2835.   vars = build_decl (TYPE_DECL, get_identifier (" @%$#@!"), integer_type_node);
  2836. #endif
  2837.   DECL_IGNORED_P (vars) = 1;
  2838.   SET_DECL_ARTIFICIAL (vars);
  2839.   pushdecl (vars);
  2840. #endif
  2841.  
  2842.   /* Walk to mark the inline functions we need, then output them so
  2843.      that we can pick up any other tdecls that those routines need. */
  2844.   walk_vtables ((void (*)())0, finish_prevtable_vardecl);
  2845.  
  2846.   vars = static_aggregates;
  2847.  
  2848.   if (static_ctors || vars || might_have_exceptions_p ())
  2849.     needs_messing_up = 1;
  2850.   if (static_dtors)
  2851.     needs_cleaning = 1;
  2852.  
  2853.   /* See if we really need the hassle.  */
  2854.   while (vars && needs_cleaning == 0)
  2855.     {
  2856.       tree decl = TREE_VALUE (vars);
  2857.       tree type = TREE_TYPE (decl);
  2858.       if (TYPE_NEEDS_DESTRUCTOR (type))
  2859.     {
  2860.       needs_cleaning = 1;
  2861.       needs_messing_up = 1;
  2862.       break;
  2863.     }
  2864.       else
  2865.     needs_messing_up |= TYPE_NEEDS_CONSTRUCTING (type);
  2866.       vars = TREE_CHAIN (vars);
  2867.     }
  2868.  
  2869.   if (needs_cleaning == 0)
  2870.     goto mess_up;
  2871.  
  2872.   fnname = get_file_function_name ('D');
  2873.   start_function (void_list_node, build_parse_node (CALL_EXPR, fnname, void_list_node, NULL_TREE), 0, 0);
  2874.   fnname = DECL_ASSEMBLER_NAME (current_function_decl);
  2875.   store_parm_decls ();
  2876.  
  2877.   pushlevel (0);
  2878.   clear_last_expr ();
  2879.   push_momentary ();
  2880.   expand_start_bindings (0);
  2881.  
  2882.   /* These must be done in backward order to destroy,
  2883.      in which they happen to be!  */
  2884.   for (vars = static_aggregates; vars; vars = TREE_CHAIN (vars))
  2885.     {
  2886.       tree decl = TREE_VALUE (vars);
  2887.       tree type = TREE_TYPE (decl);
  2888.       tree temp = TREE_PURPOSE (vars);
  2889.  
  2890.       if (TYPE_NEEDS_DESTRUCTOR (type))
  2891.     {
  2892.       if (TREE_STATIC (vars))
  2893.         expand_start_cond (build_binary_op (NE_EXPR, temp, integer_zero_node, 1), 0);
  2894.       if (TREE_CODE (type) == ARRAY_TYPE)
  2895.         temp = decl;
  2896.       else
  2897.         {
  2898.           mark_addressable (decl);
  2899.           temp = build1 (ADDR_EXPR, TYPE_POINTER_TO (type), decl);
  2900.         }
  2901.       temp = build_delete (TREE_TYPE (temp), temp,
  2902.                    integer_two_node, LOOKUP_NORMAL|LOOKUP_NONVIRTUAL|LOOKUP_DESTRUCTOR, 0);
  2903.       expand_expr_stmt (temp);
  2904.  
  2905.       if (TREE_STATIC (vars))
  2906.         expand_end_cond ();
  2907.     }
  2908.     }
  2909.  
  2910.   for (; static_dtors; static_dtors = TREE_CHAIN (static_dtors))
  2911.     expand_expr_stmt (build_function_call (TREE_VALUE (static_dtors),
  2912.                        NULL_TREE));
  2913.       
  2914.   expand_end_bindings (getdecls(), 1, 0);
  2915.   poplevel (1, 0, 0);
  2916.   pop_momentary ();
  2917.  
  2918.   finish_function (lineno, 0, 0);
  2919.  
  2920.   assemble_destructor (IDENTIFIER_POINTER (fnname));
  2921.  
  2922.   /* if it needed cleaning, then it will need messing up: drop through  */
  2923.  
  2924.  mess_up:
  2925.   /* Must do this while we think we are at the top level.  */
  2926.   vars = nreverse (static_aggregates);
  2927.   if (needs_messing_up)
  2928.     {
  2929.       fnname = get_file_function_name ('I');
  2930.       start_function (void_list_node, build_parse_node (CALL_EXPR, fnname, void_list_node, NULL_TREE), 0, 0);
  2931.       fnname = DECL_ASSEMBLER_NAME (current_function_decl);
  2932.       store_parm_decls ();
  2933.  
  2934.       pushlevel (0);
  2935.       clear_last_expr ();
  2936.       push_momentary ();
  2937.       expand_start_bindings (0);
  2938.  
  2939.       if (might_have_exceptions_p ())
  2940.     register_exception_table ();
  2941.  
  2942.       while (vars)
  2943.     {
  2944.       tree decl = TREE_VALUE (vars);
  2945.       tree init = TREE_PURPOSE (vars);
  2946.       tree old_cleanups = cleanups_this_call;
  2947.  
  2948.       /* If this was a static attribute within some function's scope,
  2949.          then don't initialize it here.  Also, don't bother
  2950.          with initializers that contain errors.  */
  2951.       if (TREE_STATIC (vars)
  2952.           || (init && TREE_CODE (init) == TREE_LIST
  2953.           && value_member (error_mark_node, init)))
  2954.         {
  2955.           vars = TREE_CHAIN (vars);
  2956.           continue;
  2957.         }
  2958.  
  2959.       if (TREE_CODE (decl) == VAR_DECL)
  2960.         {
  2961.           /* Set these global variables so that GDB at least puts
  2962.          us near the declaration which required the initialization.  */
  2963.           input_filename = DECL_SOURCE_FILE (decl);
  2964.           lineno = DECL_SOURCE_LINE (decl);
  2965.           emit_note (input_filename, lineno);
  2966.  
  2967.           /* 9.5p5: The initializer of a static member of a class has
  2968.          the same access rights as a member function.  */
  2969.           DECL_CLASS_CONTEXT (current_function_decl) = DECL_CONTEXT (decl);
  2970.           DECL_STATIC_FUNCTION_P (current_function_decl) = 1;
  2971.  
  2972. #if 0
  2973.           if (init)
  2974.         {
  2975.           if (TREE_CODE (init) == VAR_DECL)
  2976.             {
  2977.               /* This behavior results when there are
  2978.              multiple declarations of an aggregate,
  2979.              the last of which defines it.  */
  2980.               if (DECL_RTL (init) == DECL_RTL (decl))
  2981.             {
  2982.               my_friendly_assert (DECL_INITIAL (decl) == error_mark_node
  2983.                   || (TREE_CODE (DECL_INITIAL (decl)) == CONSTRUCTOR
  2984.                       && CONSTRUCTOR_ELTS (DECL_INITIAL (decl)) == NULL_TREE),
  2985.                           199);
  2986.               init = DECL_INITIAL (init);
  2987.               if (TREE_CODE (init) == CONSTRUCTOR
  2988.                   && CONSTRUCTOR_ELTS (init) == NULL_TREE)
  2989.                 init = NULL_TREE;
  2990.             }
  2991.               else if (TREE_TYPE (decl) == TREE_TYPE (init))
  2992.             {
  2993. #if 1
  2994.               my_friendly_abort (200);
  2995. #else
  2996.               /* point to real decl's rtl anyway.  */
  2997.               DECL_RTL (init) = DECL_RTL (decl);
  2998.               my_friendly_assert (DECL_INITIAL (decl) == error_mark_node,
  2999.                           201);
  3000.               init = DECL_INITIAL (init);
  3001. #endif                /* 1 */
  3002.             }
  3003.             }
  3004.         }
  3005. #endif                /* 0 */
  3006.           if (IS_AGGR_TYPE (TREE_TYPE (decl))
  3007.           || TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
  3008.         expand_aggr_init (decl, init, 0, 0);
  3009.           else if (TREE_CODE (init) == TREE_VEC)
  3010.         {
  3011.           expand_expr (expand_vec_init (decl, TREE_VEC_ELT (init, 0),
  3012.                         TREE_VEC_ELT (init, 1),
  3013.                         TREE_VEC_ELT (init, 2), 0),
  3014.                    const0_rtx, VOIDmode, 0);
  3015.           free_temp_slots ();
  3016.         }
  3017.           else
  3018.         expand_assignment (decl, init, 0, 0);
  3019.  
  3020.           DECL_CLASS_CONTEXT (current_function_decl) = NULL_TREE;
  3021.         }
  3022.       else if (TREE_CODE (decl) == SAVE_EXPR)
  3023.         {
  3024.           if (! PARM_DECL_EXPR (decl))
  3025.         {
  3026.           /* a `new' expression at top level.  */
  3027.           expand_expr (decl, const0_rtx, VOIDmode, 0);
  3028.           free_temp_slots ();
  3029.           expand_aggr_init (build_indirect_ref (decl, NULL_PTR), init, 0, 0);
  3030.         }
  3031.         }
  3032.       else if (decl == error_mark_node)
  3033.         ;
  3034.       else my_friendly_abort (22);
  3035.       vars = TREE_CHAIN (vars);
  3036.       /* Cleanup any temporaries needed for the initial value.  */
  3037.       expand_cleanups_to (old_cleanups);
  3038.     }
  3039.  
  3040.       for (; static_ctors; static_ctors = TREE_CHAIN (static_ctors))
  3041.     expand_expr_stmt (build_function_call (TREE_VALUE (static_ctors),
  3042.                            NULL_TREE));
  3043.       
  3044.       expand_end_bindings (getdecls(), 1, 0);
  3045.       poplevel (1, 0, 0);
  3046.       pop_momentary ();
  3047.  
  3048.       finish_function (lineno, 0, 0);
  3049.       assemble_constructor (IDENTIFIER_POINTER (fnname));
  3050.     }
  3051.  
  3052.   permanent_allocation (1);
  3053.  
  3054.   /* Done with C language context needs.  */
  3055.   pop_lang_context ();
  3056.  
  3057.   /* Now write out any static class variables (which may have since
  3058.      learned how to be initialized).  */
  3059.   while (pending_statics)
  3060.     {
  3061.       tree decl = TREE_VALUE (pending_statics);
  3062.       if (TREE_USED (decl) == 1
  3063.       || TREE_READONLY (decl) == 0
  3064.       || DECL_INITIAL (decl) == 0)
  3065.     rest_of_decl_compilation (decl, IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), 1, 1);
  3066.       pending_statics = TREE_CHAIN (pending_statics);
  3067.     }
  3068.  
  3069.   this_time = get_run_time ();
  3070.   parse_time -= this_time - start_time;
  3071.   varconst_time += this_time - start_time;
  3072.  
  3073.   start_time = get_run_time ();
  3074.  
  3075.   if (flag_handle_signatures)
  3076.     walk_sigtables ((void (*)())0, finish_sigtable_vardecl);
  3077.  
  3078.   for (fnname = saved_inlines; fnname; fnname = TREE_CHAIN (fnname))
  3079.     {
  3080.       tree decl = TREE_VALUE (fnname);
  3081.       import_export_inline (decl);
  3082.       if (DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl)
  3083.       && TREE_PUBLIC (decl) && ! DECL_WEAK (decl)
  3084.       && DECL_NOT_REALLY_EXTERN (decl))
  3085.     synthesize_method (decl);
  3086.     }
  3087.  
  3088.   /* Now write out inline functions which had their addresses taken and
  3089.      which were not declared virtual and which were not declared `extern
  3090.      inline'.  */
  3091.   {
  3092.     int reconsider = 1;        /* More may be referenced; check again */
  3093.  
  3094.     while (reconsider)
  3095.       {
  3096.     tree last = saved_inlines = tree_cons (NULL_TREE, NULL_TREE,
  3097.                            saved_inlines);
  3098.     tree last_head = last;
  3099.     tree place = TREE_CHAIN (saved_inlines);
  3100.     reconsider = 0;
  3101.  
  3102.     walk_vtables ((void (*)())0, finish_vtable_vardecl);
  3103.  
  3104.     for (; place; place = TREE_CHAIN (place))
  3105.       {
  3106.         tree decl = TREE_VALUE (place);
  3107.  
  3108.         /* Slice out the empty elements put in just above in the
  3109.            previous reconsidering.  */
  3110.         if (decl == NULL_TREE)
  3111.           {
  3112.         TREE_CHAIN (last) = TREE_CHAIN (place);
  3113.         continue;
  3114.           }
  3115.  
  3116.         if (DECL_ARTIFICIAL (decl) && ! DECL_INITIAL (decl))
  3117.           {
  3118.         if (TREE_USED (decl))
  3119.           {
  3120.             synthesize_method (decl);
  3121.             if (TREE_ASM_WRITTEN (decl))
  3122.               reconsider = 1;
  3123.           }
  3124.         else
  3125.           {
  3126.             last = place;
  3127.             continue;
  3128.           }
  3129.           }
  3130.  
  3131.         if (TREE_ASM_WRITTEN (decl) || DECL_SAVED_INSNS (decl) == 0)
  3132.           {
  3133.         TREE_CHAIN (last) = TREE_CHAIN (place);
  3134.         continue;
  3135.           }
  3136.  
  3137.         if ((TREE_PUBLIC (decl) && ! DECL_WEAK (decl))
  3138.         || TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))
  3139.         || flag_keep_inline_functions)
  3140.           {
  3141.         TREE_CHAIN (last) = TREE_CHAIN (place);
  3142.  
  3143.         if (DECL_NOT_REALLY_EXTERN (decl))
  3144.           {
  3145.             DECL_EXTERNAL (decl) = 0;
  3146.             reconsider = 1;
  3147.             temporary_allocation ();
  3148.             output_inline_function (decl);
  3149.             permanent_allocation (1);
  3150.           }
  3151.  
  3152.         continue;
  3153.           }
  3154.  
  3155.         last = place;
  3156.       }
  3157.       }
  3158.   }
  3159.  
  3160.   /* Now delete from the chain of variables all virtual function tables.
  3161.      We output them all ourselves, because each will be treated specially.  */
  3162.  
  3163.   walk_vtables ((void (*)())0, prune_vtable_vardecl);
  3164.  
  3165.   for (vars = getdecls (); vars; vars = TREE_CHAIN (vars))
  3166.     {
  3167.       if (TREE_CODE (vars) == THUNK_DECL)
  3168.     emit_thunk (vars);
  3169.       else if (TREE_CODE (vars) == FUNCTION_DECL
  3170.            && ! DECL_INTERFACE_KNOWN (vars)
  3171.            && DECL_C_STATIC (vars))
  3172.     TREE_PUBLIC (vars) = 0;
  3173.     }
  3174.  
  3175.   if (might_have_exceptions_p ())
  3176.     emit_exception_table ();
  3177.  
  3178.   if (write_virtuals == 2)
  3179.     {
  3180.       /* Now complain about an virtual function tables promised
  3181.      but not delivered.  */
  3182.       while (pending_vtables)
  3183.     {
  3184.       if (TREE_PURPOSE (pending_vtables) == NULL_TREE)
  3185.         error ("virtual function table for `%s' not defined",
  3186.            IDENTIFIER_POINTER (TREE_VALUE (pending_vtables)));
  3187.       pending_vtables = TREE_CHAIN (pending_vtables);
  3188.     }
  3189.     }
  3190.  
  3191.   finish_repo ();
  3192.  
  3193.   this_time = get_run_time ();
  3194.   parse_time -= this_time - start_time;
  3195.   varconst_time += this_time - start_time;
  3196.  
  3197.   if (flag_detailed_statistics)
  3198.     dump_time_statistics ();
  3199. }
  3200.  
  3201. /* This is something of the form 'A()()()()()+1' that has turned out to be an
  3202.    expr.  Since it was parsed like a type, we need to wade through and fix
  3203.    that.  Unfortunately, since operator() is left-associative, we can't use
  3204.    tail recursion.  In the above example, TYPE is `A', and DECL is
  3205.    `()()()()()'.
  3206.  
  3207.    Maybe this shouldn't be recursive, but how often will it actually be
  3208.    used?  (jason) */
  3209. tree
  3210. reparse_absdcl_as_expr (type, decl)
  3211.      tree type, decl;
  3212. {
  3213.   /* do build_functional_cast (type, NULL_TREE) at bottom */
  3214.   if (TREE_OPERAND (decl, 0) == NULL_TREE)
  3215.     return build_functional_cast (type, NULL_TREE);
  3216.  
  3217.   /* recurse */
  3218.   decl = reparse_decl_as_expr (type, TREE_OPERAND (decl, 0));
  3219.  
  3220.   decl = build_x_function_call (decl, NULL_TREE, current_class_decl);
  3221.  
  3222.   if (TREE_CODE (decl) == CALL_EXPR && TREE_TYPE (decl) != void_type_node)
  3223.     decl = require_complete_type (decl);
  3224.  
  3225.   return decl;
  3226. }
  3227.  
  3228. /* This is something of the form `int ((int)(int)(int)1)' that has turned
  3229.    out to be an expr.  Since it was parsed like a type, we need to wade
  3230.    through and fix that.  Since casts are right-associative, we are
  3231.    reversing the order, so we don't have to recurse.
  3232.  
  3233.    In the above example, DECL is the `(int)(int)(int)', and EXPR is the
  3234.    `1'.  */
  3235. tree
  3236. reparse_absdcl_as_casts (decl, expr)
  3237.      tree decl, expr;
  3238. {
  3239.   tree type;
  3240.   
  3241.   if (TREE_CODE (expr) == CONSTRUCTOR)
  3242.     {
  3243.       type = groktypename (TREE_VALUE (TREE_OPERAND (decl, 1)));
  3244.       decl = TREE_OPERAND (decl, 0);
  3245.  
  3246.       if (IS_SIGNATURE (type))
  3247.     {
  3248.       error ("cast specifies signature type");
  3249.       return error_mark_node;
  3250.     }
  3251.  
  3252.       expr = digest_init (type, expr, (tree *) 0);
  3253.       if (TREE_CODE (type) == ARRAY_TYPE && TYPE_SIZE (type) == 0)
  3254.     {
  3255.       int failure = complete_array_type (type, expr, 1);
  3256.       if (failure)
  3257.         my_friendly_abort (78);
  3258.     }
  3259.     }
  3260.  
  3261.   while (decl)
  3262.     {
  3263.       type = groktypename (TREE_VALUE (TREE_OPERAND (decl, 1)));
  3264.       decl = TREE_OPERAND (decl, 0);
  3265.       expr = build_c_cast (type, expr, 0);
  3266.     }
  3267.  
  3268.   return expr;
  3269. }
  3270.  
  3271. /* Recursive helper function for reparse_decl_as_expr.  It may be a good
  3272.    idea to reimplement this using an explicit stack, rather than recursion. */
  3273. static tree
  3274. reparse_decl_as_expr1 (decl)
  3275.      tree decl;
  3276. {
  3277.   switch (TREE_CODE (decl))
  3278.     {
  3279.     case IDENTIFIER_NODE:
  3280.       return do_identifier (decl);
  3281.     case INDIRECT_REF:
  3282.       return build_x_indirect_ref
  3283.     (reparse_decl_as_expr1 (TREE_OPERAND (decl, 0)), "unary *");
  3284.     case ADDR_EXPR:
  3285.       return build_x_unary_op (ADDR_EXPR,
  3286.                    reparse_decl_as_expr1 (TREE_OPERAND (decl, 0)));
  3287.     case BIT_NOT_EXPR:
  3288.       return build_x_unary_op (BIT_NOT_EXPR,
  3289.                    reparse_decl_as_expr1 (TREE_OPERAND (decl, 0)));
  3290.     case SCOPE_REF:
  3291.       return build_offset_ref (TREE_OPERAND (decl, 0), TREE_OPERAND (decl, 1));
  3292.     case ARRAY_REF:
  3293.       return grok_array_decl (reparse_decl_as_expr1 (TREE_OPERAND (decl, 0)),
  3294.                   TREE_OPERAND (decl, 1));
  3295.     default:
  3296.       my_friendly_abort (5);
  3297.       return NULL_TREE;
  3298.     }
  3299. }
  3300.  
  3301. /* This is something of the form `int (*a)++' that has turned out to be an
  3302.    expr.  It was only converted into parse nodes, so we need to go through
  3303.    and build up the semantics.  Most of the work is done by
  3304.    reparse_decl_as_expr1, above.
  3305.  
  3306.    In the above example, TYPE is `int' and DECL is `*a'.  */
  3307. tree
  3308. reparse_decl_as_expr (type, decl)
  3309.      tree type, decl;
  3310. {
  3311.   decl = reparse_decl_as_expr1 (decl);
  3312.   if (type)
  3313.     return build_functional_cast (type, build_tree_list (NULL_TREE, decl));
  3314.   else
  3315.     return decl;
  3316. }
  3317.  
  3318. /* This is something of the form `int (*a)' that has turned out to be a
  3319.    decl.  It was only converted into parse nodes, so we need to do the
  3320.    checking that make_{pointer,reference}_declarator do. */
  3321.  
  3322. tree
  3323. finish_decl_parsing (decl)
  3324.      tree decl;
  3325. {
  3326.   extern int current_class_depth;
  3327.   
  3328.   switch (TREE_CODE (decl))
  3329.     {
  3330.     case IDENTIFIER_NODE:
  3331.       return decl;
  3332.     case INDIRECT_REF:
  3333.       return make_pointer_declarator
  3334.     (NULL_TREE, finish_decl_parsing (TREE_OPERAND (decl, 0)));
  3335.     case ADDR_EXPR:
  3336.       return make_reference_declarator
  3337.     (NULL_TREE, finish_decl_parsing (TREE_OPERAND (decl, 0)));
  3338.     case BIT_NOT_EXPR:
  3339.       TREE_OPERAND (decl, 0) = finish_decl_parsing (TREE_OPERAND (decl, 0));
  3340.       return decl;
  3341.     case SCOPE_REF:
  3342.       push_nested_class (TREE_TYPE (TREE_OPERAND (decl, 0)), 3);
  3343.       TREE_COMPLEXITY (decl) = current_class_depth;
  3344.       return decl;
  3345.     case ARRAY_REF:
  3346.       TREE_OPERAND (decl, 0) = finish_decl_parsing (TREE_OPERAND (decl, 0));
  3347.       return decl;
  3348.     default:
  3349.       my_friendly_abort (5);
  3350.       return NULL_TREE;
  3351.     }
  3352. }
  3353.  
  3354. tree
  3355. check_cp_case_value (value)
  3356.      tree value;
  3357. {
  3358.   if (value == NULL_TREE)
  3359.     return value;
  3360.  
  3361.   /* build_c_cast puts on a NOP_EXPR to make a non-lvalue.
  3362.      Strip such NOP_EXPRs.  */
  3363.   if (TREE_CODE (value) == NOP_EXPR
  3364.       && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
  3365.     value = TREE_OPERAND (value, 0);
  3366.  
  3367.   if (TREE_READONLY_DECL_P (value))
  3368.     {
  3369.       value = decl_constant_value (value);
  3370.       /* build_c_cast puts on a NOP_EXPR to make a non-lvalue.
  3371.      Strip such NOP_EXPRs.  */
  3372.       if (TREE_CODE (value) == NOP_EXPR
  3373.       && TREE_TYPE (value) == TREE_TYPE (TREE_OPERAND (value, 0)))
  3374.     value = TREE_OPERAND (value, 0);
  3375.     }
  3376.   value = fold (value);
  3377.  
  3378.   if (TREE_CODE (value) != INTEGER_CST
  3379.       && value != error_mark_node)
  3380.     {
  3381.       cp_error ("case label `%E' does not reduce to an integer constant",
  3382.         value);
  3383.       value = error_mark_node;
  3384.     }
  3385.   else
  3386.     /* Promote char or short to int.  */
  3387.     value = default_conversion (value);
  3388.  
  3389.   constant_expression_warning (value);
  3390.  
  3391.   return value;
  3392. }
  3393.  
  3394. tree current_namespace;
  3395.  
  3396. /* Get the inner part of a namespace id.  It doesn't have any prefix, nor
  3397.    postfix.  Returns 0 if in global namespace.  */
  3398. tree
  3399. get_namespace_id ()
  3400. {
  3401.   tree x = current_namespace;
  3402.   if (x)
  3403.     x = TREE_PURPOSE (x);
  3404.   return x;
  3405. }
  3406.  
  3407. /* Build up a DECL_ASSEMBLER_NAME for NAME in the current namespace. */
  3408. tree
  3409. current_namespace_id (name)
  3410.      tree name;
  3411. {
  3412.   tree old_id = get_namespace_id ();
  3413.   char *buf;
  3414.  
  3415.   /* Global names retain old encoding. */
  3416.   if (! old_id)
  3417.     return name;
  3418.  
  3419.   buf = (char *) alloca (8 + IDENTIFIER_LENGTH (old_id)
  3420.              + IDENTIFIER_LENGTH (name));
  3421.   sprintf (buf, "__ns_%s_%s", IDENTIFIER_POINTER (old_id),
  3422.        IDENTIFIER_POINTER (name));
  3423.   return get_identifier (buf);
  3424. }
  3425.  
  3426. void
  3427. do_namespace_alias (alias, namespace)
  3428.      tree alias, namespace;
  3429. {
  3430. }
  3431.  
  3432. tree
  3433. do_toplevel_using_decl (decl)
  3434.      tree decl;
  3435. {
  3436.   if (decl == NULL_TREE || decl == error_mark_node)
  3437.     return;
  3438.  
  3439.   if (TREE_CODE (decl) == SCOPE_REF)
  3440.     decl = resolve_scope_to_name (NULL_TREE, decl);
  3441.  
  3442.   /* Is this the right way to do an id list? */
  3443.   if (TREE_CODE (decl) != TREE_LIST)
  3444.     {
  3445.       pushdecl (decl);
  3446.     }
  3447.   else
  3448.     while (decl)
  3449.       {
  3450.     pushdecl (TREE_VALUE (decl));
  3451.     decl = TREE_CHAIN (decl);
  3452.       }
  3453. }
  3454.  
  3455. tree
  3456. do_class_using_decl (decl)
  3457.      tree decl;
  3458. {
  3459.   return error_mark_node;
  3460. }
  3461.  
  3462. void
  3463. do_using_directive (namespace)
  3464.      tree namespace;
  3465. {
  3466. }
  3467.